🚀 seperate files for email secrets

This commit is contained in:
Moritz Böhme 2022-02-16 12:00:52 +01:00
parent 5aa2803627
commit 590443b0f9
No known key found for this signature in database
GPG key ID: 213820E2795F5CF5
5 changed files with 30 additions and 6 deletions

View file

@ -67,8 +67,23 @@
agenix.nixosModules.age
];
hosts.nixos-laptop.modules = [ ./hosts/nixos-laptop ];
hosts.nixos-laptop.modules = [
./hosts/nixos-laptop
{
age.secrets.email = {
file = ./secrets/email-laptop.age;
owner = "1000";
};
}
];
hosts.nixos-desktop.modules = [
{
age.secrets.email = {
file = ./secrets/email-desktop.age;
owner = "1000";
};
}
./hosts/nixos-desktop
self.nixosModules.containers
self.nixosModules.gaming