glotzbert: fix hardware config

This commit is contained in:
Sandro - 2024-01-06 14:00:05 +01:00
parent 09aeddf7cf
commit d7df2578ea
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 9 additions and 0 deletions

View File

@ -14,46 +14,55 @@
fileSystems."/" = fileSystems."/" =
{ device = "glotzbert/data"; { device = "glotzbert/data";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/etc" = fileSystems."/etc" =
{ device = "glotzbert/data/etc"; { device = "glotzbert/data/etc";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/nix" = fileSystems."/nix" =
{ device = "glotzbert/nixos/nix"; { device = "glotzbert/nixos/nix";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/nix/store" = fileSystems."/nix/store" =
{ device = "glotzbert/nixos/nix/store"; { device = "glotzbert/nixos/nix/store";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/var" = fileSystems."/var" =
{ device = "glotzbert/data/var"; { device = "glotzbert/data/var";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/var/lib" = fileSystems."/var/lib" =
{ device = "glotzbert/data/var/lib"; { device = "glotzbert/data/var/lib";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/var/log" = fileSystems."/var/log" =
{ device = "glotzbert/data/var/log"; { device = "glotzbert/data/var/log";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/home" = fileSystems."/home" =
{ device = "glotzbert/data/home"; { device = "glotzbert/data/home";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/nix/var" = fileSystems."/nix/var" =
{ device = "glotzbert/nixos/nix/var"; { device = "glotzbert/nixos/nix/var";
fsType = "zfs"; fsType = "zfs";
options = [ "zfsutil" ];
}; };
fileSystems."/boot" = fileSystems."/boot" =