diff --git a/nixos.nix b/nixos.nix index acf39e49..0ca980fc 100644 --- a/nixos.nix +++ b/nixos.nix @@ -10,14 +10,10 @@ ]; options = { - deploy.profile.kat = lib.mkEnableOption "uhh meow" // { default = true; }; - deploy.profile.gui = lib.mkEnableOption "graphical system" // { - default = true; - }; - deploy.profile.sway = lib.mkEnableOption "sway wm" // { default = true; }; - deploy.profile.laptop = lib.mkEnableOption "lappytop" // { - default = true; - }; + deploy.profile.kat = lib.mkEnableOption "uhh meow"; + deploy.profile.gui = lib.mkEnableOption "graphical system"; + deploy.profile.sway = lib.mkEnableOption "sway wm"; + deploy.profile.laptop = lib.mkEnableOption "lappytop"; }; options.home-manager.users = lib.mkOption { @@ -42,18 +38,10 @@ imports = [ ./home.nix (import (./hosts + "/${hostName}/home")) ]; options = { - deploy.profile.kat = lib.mkEnableOption "uhh meow" // { - default = true; - }; - deploy.profile.gui = lib.mkEnableOption "graphical system" // { - default = true; - }; - deploy.profile.sway = lib.mkEnableOption "sway wm" // { - default = true; - }; - deploy.profile.laptop = lib.mkEnableOption "lappytop" // { - default = true; - }; + deploy.profile.kat = lib.mkEnableOption "uhh meow"; + deploy.profile.gui = lib.mkEnableOption "graphical system"; + deploy.profile.sway = lib.mkEnableOption "sway wm"; + deploy.profile.laptop = lib.mkEnableOption "lappytop"; }; }; }; diff --git a/profiles/gui/home.nix b/profiles/gui/home.nix index 36abc3ac..678658c1 100644 --- a/profiles/gui/home.nix +++ b/profiles/gui/home.nix @@ -2,4 +2,6 @@ { imports = [ ./home ]; + + deploy.profile.gui = true; } diff --git a/profiles/gui/nixos.nix b/profiles/gui/nixos.nix index 47eb0b4d..a56fddb6 100644 --- a/profiles/gui/nixos.nix +++ b/profiles/gui/nixos.nix @@ -4,4 +4,6 @@ imports = [ ./nixos ]; home-manager.users.kat = { imports = [ ./home.nix ]; }; + + deploy.profile.gui = true; } diff --git a/profiles/kat/home.nix b/profiles/kat/home.nix index 36abc3ac..86fb62f7 100644 --- a/profiles/kat/home.nix +++ b/profiles/kat/home.nix @@ -2,4 +2,6 @@ { imports = [ ./home ]; + + deploy.profile.kat = true; } diff --git a/profiles/kat/nixos.nix b/profiles/kat/nixos.nix index df30b751..53c78400 100644 --- a/profiles/kat/nixos.nix +++ b/profiles/kat/nixos.nix @@ -3,6 +3,8 @@ { home-manager.users.kat = { imports = [ ./home.nix ]; }; + deploy.profile.kat = true; + users.users.kat = { uid = 1000; isNormalUser = true; diff --git a/profiles/laptop/home.nix b/profiles/laptop/home.nix index e5d01b95..0835e093 100644 --- a/profiles/laptop/home.nix +++ b/profiles/laptop/home.nix @@ -1,3 +1,5 @@ { lib, ... }: -{ } +{ + deploy.profile.laptop = true; +} diff --git a/profiles/laptop/nixos.nix b/profiles/laptop/nixos.nix index d1d9cbc5..d675e3eb 100644 --- a/profiles/laptop/nixos.nix +++ b/profiles/laptop/nixos.nix @@ -2,4 +2,6 @@ { imports = [ ./nixos ]; + + deploy.profile.laptop = true; } diff --git a/profiles/sway/home.nix b/profiles/sway/home.nix index 36abc3ac..f525e89f 100644 --- a/profiles/sway/home.nix +++ b/profiles/sway/home.nix @@ -2,4 +2,6 @@ { imports = [ ./home ]; + + deploy.profile.sway = true; } diff --git a/profiles/sway/nixos.nix b/profiles/sway/nixos.nix index 06581ae7..fa6d2dc9 100644 --- a/profiles/sway/nixos.nix +++ b/profiles/sway/nixos.nix @@ -4,4 +4,6 @@ imports = [ ./nixos ]; home-manager.users.kat = { imports = [ ./home.nix ]; }; + + deploy.profile.sway = true; }