From f93cb20dae73d44aa34c033aab4511606f7130c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 19 Mar 2024 23:05:43 +0100 Subject: [PATCH] fix: do not make this error! --- configs/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configs/default.nix b/configs/default.nix index 2bf5e41..bc7c427 100644 --- a/configs/default.nix +++ b/configs/default.nix @@ -83,11 +83,16 @@ in { users.users.me = { name = "kfm"; description = kieran.name; + hashedPasswordFile = config.age.secrets.kfm-password.path; isNormalUser = true; uid = 1000; extraGroups = ["pipewire" "audio"]; }; + age.secrets = { + kfm-password.file = ../secrets/kfm-password.age; + }; + home-manager.users.me.xdg.enable = true; } {