diff options
Diffstat (limited to 'profiles/home-manager.nix')
| -rw-r--r-- | profiles/home-manager.nix | 12 |
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 + ] + ); } |
