diff options
Diffstat (limited to 'modules/root')
-rw-r--r-- | modules/root/normaluser.nix | 2 | ||||
-rw-r--r-- | modules/root/secrets.nix | 2 | ||||
-rw-r--r-- | modules/root/software/desktop.nix | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/modules/root/normaluser.nix b/modules/root/normaluser.nix index b4be0cc..88eb338 100644 --- a/modules/root/normaluser.nix +++ b/modules/root/normaluser.nix @@ -4,7 +4,7 @@ }; users.users.${userDetails.username} = { description = userDetails.fullname; - #home = userDetails.home.root; + #home = userDetails.home; isNormalUser = true; hashedPasswordFile = config.sops.secrets.hashed-root-password.path; extraGroups = [ diff --git a/modules/root/secrets.nix b/modules/root/secrets.nix index 47262fd..045e3f4 100644 --- a/modules/root/secrets.nix +++ b/modules/root/secrets.nix @@ -4,7 +4,7 @@ sops = { defaultSopsFile = ./resources/secrets/secrets.yaml; defaultSopsFormat = "yaml"; - age.keyFile = "${userDetails.home.root}/.config/sops/age/keys.txt"; + age.keyFile = "${userDetails.home}/.config/sops/age/keys.txt"; secrets = { wpa_supplicant-conf = { }; diff --git a/modules/root/software/desktop.nix b/modules/root/software/desktop.nix index b194029..dfddab1 100644 --- a/modules/root/software/desktop.nix +++ b/modules/root/software/desktop.nix @@ -54,6 +54,7 @@ ] ++ pkgs.lib.optionals config.software.desktop.office.enable [ # Office libreoffice + okular pdfchain thunderbird ] ++ pkgs.lib.optionals config.software.desktop.utilities.enable [ |