refactor: identityPaths does not need to be specified in NixOS agenix module

This commit is contained in:
wi11-holdsworth 2025-09-25 18:05:44 +10:00
parent f1cf2988f4
commit fc9f2a89d5

View file

@ -3,7 +3,6 @@
inputs, inputs,
lib, lib,
system, system,
userName,
... ...
}: }:
let let
@ -11,7 +10,6 @@ let
in in
{ {
config = lib.mkIf config.${feature}.enable { config = lib.mkIf config.${feature}.enable {
age.identityPaths = [ "/home/${userName}/.ssh/id_ed25519" ];
environment.systemPackages = [ inputs.agenix.packages.${system}.default ]; environment.systemPackages = [ inputs.agenix.packages.${system}.default ];
}; };