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

16 lines
323 B
Nix

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