final-finally?

This commit is contained in:
Nicole Dresselhaus
2025-06-11 16:20:13 +02:00
parent cbd55764b7
commit f98a761db3
3 changed files with 47 additions and 21 deletions

View File

@ -11,16 +11,27 @@
networking.hostName = "nix-nas";
networking.hostId = "39373132"; # via: head -c4 /etc/machine-id | od -An -tx4
fileSystems = {
"/nix" = {
device = "rpool/nix";
fileSystems."/" =
{ device = "rpool/root";
fsType = "zfs";
};
"/home" = {
device = "rpool/home";
fileSystems."/nix" =
{ device = "rpool/nix";
fsType = "zfs";
};
};
fileSystems."/home" =
{ device = "tank/home";
fsType = "zfs";
};
fileSystems."/tank" =
{ device = "tank/media";
fsType = "zfs";
};
swapDevices = [ ];
users.users.nicole = {
isNormalUser = true;