nixos/home/gnome/nixos.nix

33 lines
513 B
Nix
Raw Normal View History

2025-01-13 11:52:09 +08:00
{
pkgs,
lib,
config,
...
}:
with lib;
let
2024-01-28 16:51:53 +08:00
cfg = config.home.gnome;
2025-01-13 11:52:09 +08:00
in
{
imports = [ ./impl/nixos.nix ];
2024-01-28 16:51:53 +08:00
options.home.gnome = {
enable = mkEnableOption "GNOME desktop environment";
};
config = {
users.homeModules = [
# this module passes gnome configuration to home-manager
2024-07-29 14:19:20 +08:00
{ passthrough.gnome = cfg; }
2024-01-28 16:51:53 +08:00
];
2025-01-13 11:52:09 +08:00
specialisation.nognome =
with cfg;
mkIf enable {
configuration = {
home.gnome.enable = mkForce false;
};
2024-01-28 16:51:53 +08:00
};
};
}