summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
authortriethyl <triethylammonium@pm.me>2025-12-03 13:28:35 -0500
committertriethyl <triethylammonium@pm.me>2025-12-03 13:28:35 -0500
commitd29c25af125589c25aa5c9b1427291c1f08b6d7d (patch)
tree130f09b58ea891fcca6ed0544cf8865314f61144 /nixos
parentf0a19cd407ce71f9566b255650b697e868ac296d (diff)
renamed pkgs.system to pkgs.stdenv.hostPlatform.system
Diffstat (limited to 'nixos')
-rw-r--r--nixos/features/global/agenix.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/features/global/agenix.nix b/nixos/features/global/agenix.nix
index f232886..d284d4d 100644
--- a/nixos/features/global/agenix.nix
+++ b/nixos/features/global/agenix.nix
@@ -1,7 +1,7 @@
{ pkgs, inputs, ...}: {
imports = [ inputs.agenix.nixosModules.default ];
environment.systemPackages = [
- inputs.agenix.packages.${pkgs.system}.default
+ inputs.agenix.packages.${pkgs.stdenv.hostPlatform.system}.default
];
age.identityPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
}