From 5f80e62f938519fcd869cbcb6052bd1c4cfcbedd Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Tue, 17 Sep 2024 19:22:13 +1000 Subject: [PATCH] bug(users): correct hashedPasswordFile --- profiles/users.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/profiles/users.nix b/profiles/users.nix index 80040cd..853bf2c 100644 --- a/profiles/users.nix +++ b/profiles/users.nix @@ -27,7 +27,7 @@ uid = 1004; group = "fiona"; extraGroups = ["networkmanager"]; - hashedPassword = config.age.secrets.fiona.path; + hashedPasswordFile = config.age.secrets.fiona.path; }; hamish = { isNormalUser = true; @@ -35,7 +35,7 @@ uid = 1001; group = "hamish"; extraGroups = ["networkmanager"]; - hashedPassword = config.age.secrets.hamish.path; + hashedPasswordFile = config.age.secrets.hamish.path; }; logan = { isNormalUser = true; @@ -43,7 +43,7 @@ uid = 1002; group = "logan"; extraGroups = ["networkmanager"]; - hashedPassword = config.age.secrets.logan.path; + hashedPasswordFile = config.age.secrets.logan.path; }; xander = { isNormalUser = true; @@ -51,7 +51,7 @@ uid = 1003; group = "xander"; extraGroups = ["networkmanager"]; - hashedPassword = config.age.secrets.logan.path; + hashedPasswordFile = config.age.secrets.logan.path; }; }; }