aboutsummaryrefslogtreecommitdiff
path: root/profiles/home-manager.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--profiles/home-manager.nix12
1 files changed, 11 insertions, 1 deletions
diff --git a/profiles/home-manager.nix b/profiles/home-manager.nix
index fa6b60c..f2333da 100644
--- a/profiles/home-manager.nix
+++ b/profiles/home-manager.nix
@@ -4,6 +4,7 @@
hostName,
inputs,
config,
+ pkgs,
...
}:
{
@@ -23,5 +24,14 @@
inputs.agenix.homeManagerModules.default
../home/modules/userinfo.nix
../home/modules/onepassword.nix
- ];
+ ]
+ ++ (
+ if pkgs.stdenv.isDarwin then
+ [ ]
+ else
+ [
+ inputs.niri.homeModules.niri
+ inputs.noctalia.homeModules.default
+ ]
+ );
}