sneeuwvlok/modules/nixos/desktop/gnome/default.nix
2025-07-28 14:34:09 +02:00

14 lines
281 B
Nix

{ lib, config, namespace, ... }:let
inherit (lib) mkEnableOption mkOption;
inherit (lib.types) bool;
cfg = config.${namespace}.desktop.gnome;
in
{
options.${namespace}.desktop.gnome = {
enable = mkEnableOption "Enable Gnome";
};
config = mkIf cfg.enable {
};
}