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

@ -18,6 +18,7 @@
docker.enable = true;
eid.enable = true;
git.email = "charlotte.vanpetegem@ugent.be";
sshd.enable = true;
zfs = {
enable = true;
encrypted = true;

View file

@ -22,31 +22,36 @@
fileSystems."/" = {
device = "rpool/local/root";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/nix" = {
device = "rpool/local/nix";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/nix/store" = {
device = "rpool/local/nix-store";
fsType = "zfs";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/A5BA-352A";
fsType = "vfat";
neededForBoot = true;
};
fileSystems."/cache" = {
device = "rpool/local/cache";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/data" = {
device = "rpool/safe/data";
fsType = "zfs";
neededForBoot = true;
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/A5BA-352A";
fsType = "vfat";
};
swapDevices = [

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";

View file

@ -25,22 +25,27 @@
"/" = {
device = "zroot/local/root";
fsType = "zfs";
neededForBoot = true;
};
"/nix" = {
device = "zroot/local/nix";
fsType = "zfs";
neededForBoot = true;
};
"/nix/store" = {
device = "zroot/local/nix-store";
fsType = "zfs";
neededForBoot = true;
};
"/data" = {
device = "zroot/safe/data";
fsType = "zfs";
neededForBoot = true;
};
"/cache" = {
device = "zroot/safe/cache";
fsType = "zfs";
neededForBoot = true;
};
"/srv/data" = {
device = "zdata/data";

View file

@ -25,22 +25,27 @@
"/" = {
device = "zroot/local/root";
fsType = "zfs";
neededForBoot = true;
};
"/nix" = {
device = "zroot/local/nix";
fsType = "zfs";
neededForBoot = true;
};
"/nix/store" = {
device = "zroot/local/nix-store";
fsType = "zfs";
neededForBoot = true;
};
"/data" = {
device = "zroot/safe/data";
fsType = "zfs";
neededForBoot = true;
};
"/cache" = {
device = "zroot/safe/cache";
fsType = "zfs";
neededForBoot = true;
};
"/srv/data" = {
device = "zdata/data";

Binary file not shown.