diff options
author | Jasper Ras <jras@hostnet.nl> | 2024-11-17 11:14:22 +0100 |
---|---|---|
committer | Jasper Ras <jras@hostnet.nl> | 2024-11-17 11:14:22 +0100 |
commit | fddf6b536276c5f617cdc6089c7bdc960e24792b (patch) | |
tree | 18dce25f6613f19ba61544033fb04fb517d48b25 /flake.nix | |
parent | 51cf8f04119c41599409be6bda11167bca8d2bf3 (diff) |
some changes agenix
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 12 |
1 files changed, 9 insertions, 3 deletions
@@ -22,15 +22,21 @@ hostDefaults.modules = [ home-manager.nixosModules.home-manager agenix.nixosModules.default - ./config/shared.nix ]; hosts.work.modules = [ update-systemd-resolved.nixosModules.update-systemd-resolved - ./config/agenix.nix ./hosts/work.nix + { + environment.systemPackages = [ agenix.packages.${utils.lib.system.x86_64-linux}.default ]; + } + ]; + hosts.tarrel.modules = [ + ./hosts/tarrel.nix + { + environment.systemPackages = [ agenix.packages.${utils.lib.system.x86_64-linux}.default ]; + } ]; - hosts.tarrel.modules = [./hosts/tarrel.nix]; }; } |