nixos/home/gnome/nixos.nix

26 lines
488 B
Nix
Raw Normal View History

2024-01-28 16:51:53 +08:00
{ pkgs
, lib
, config
, ... }: with lib; let
cfg = config.home.gnome;
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
];
specialisation.nognome = with cfg; mkIf enable {
configuration = {
home.gnome.enable = mkForce false;
};
};
};
}