1
0
Fork 0
mirror of https://github.com/tboerger/nixos-config synced 2024-05-05 01:56:05 +02:00

fix: use right group for homeage secrets

This commit is contained in:
Thomas Boerger 2024-01-31 15:50:56 +01:00
parent 4a367912a4
commit 3b4d454c2d
No known key found for this signature in database
GPG Key ID: F630596501026DB5
3 changed files with 3 additions and 3 deletions

View File

@ -40,7 +40,7 @@ in
source = ../secrets/gh.age;
symlinks = [ "${config.home.homeDirectory}/.ghtoken" ];
owner = "thomas";
group = "thomas";
group = "users";
mode = "0600";
};
};

View File

@ -28,7 +28,7 @@ in
source = ../secrets/minio.age;
symlinks = [ "${config.home.homeDirectory}/.mc/config.json" ];
owner = "thomas";
group = "thomas";
group = "users";
mode = "0600";
};
};

View File

@ -22,7 +22,7 @@ in
source = ../secrets/netrc.age;
symlinks = [ "${config.home.homeDirectory}/.netrc" ];
owner = "thomas";
group = "thomas";
group = "users";
mode = "0600";
};
};