This commit is contained in:
mjallen18
2026-03-25 16:02:33 -05:00
parent 981b03b955
commit 642cee5dc5
3 changed files with 3 additions and 3 deletions

View File

@@ -273,7 +273,7 @@ in
config = {
sops = {
age.keyFile = "/home/${config.${namespace}.user.name}/.config/sops/age/keys.txt";
age.keyFile = "/home/${config.home.username}/.config/sops/age/keys.txt";
defaultSopsFile = "/etc/nixos/secrets/secrets.yaml";
validateSopsFiles = false;
secrets = {

View File

@@ -12,7 +12,7 @@ in
config = lib.mkIf cfg.enable {
sops = {
age.keyFile = "/home/${config.${namespace}.user.name}/.config/sops/age/keys.txt";
age.keyFile = "/home/${config.home.username}/.config/sops/age/keys.txt";
defaultSopsFile = "/etc/nixos/secrets/secrets.yaml";
validateSopsFiles = false;
# secrets = {

View File

@@ -46,7 +46,7 @@ in
};
name = mkOption {
type = (types.nullOr types.str);
default = config.snowfallorg.user.name;
default = "matt";
description = "The user account.";
};
};