Start using age for secret management

This commit is contained in:
Charlotte Van Petegem 2021-06-20 00:18:20 +02:00
parent 276c8f33c8
commit da9160559c
No known key found for this signature in database
GPG key ID: 019E764B7184435A
39 changed files with 281 additions and 30 deletions

View file

@ -34,6 +34,7 @@
eid.enable = true;
git.email = "charlotte@vanpetegem.me";
minecraft.client = true;
sshd.enable = true;
zeroad.enable = true;
zfs = {
enable = true;

View file

@ -22,24 +22,27 @@
fileSystems."/" = {
device = "rpool/local/root";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/nix" = {
device = "rpool/local/nix";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/data" = {
device = "rpool/safe/data";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/cache" = {
device = "rpool/local/cache";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/BEEE-D83A";
fsType = "vfat";