1
0
Fork 0
mirror of https://github.com/tboerger/nixos-config synced 2024-05-18 19:46:02 +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; source = ../secrets/gh.age;
symlinks = [ "${config.home.homeDirectory}/.ghtoken" ]; symlinks = [ "${config.home.homeDirectory}/.ghtoken" ];
owner = "thomas"; owner = "thomas";
group = "thomas"; group = "users";
mode = "0600"; mode = "0600";
}; };
}; };

View File

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

View File

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