2024-01-28 16:51:53 +08:00
|
|
|
{ pkgs
|
|
|
|
, lib
|
|
|
|
, config
|
|
|
|
, ... }: with lib; let
|
|
|
|
cfg = config.home.gnome;
|
|
|
|
in {
|
2024-01-29 00:20:21 +08:00
|
|
|
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;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|