Compare commits

..

No commits in common. "6141634cb1e3b0f3b860b56f73e22903f9b441a6" and "d8b387de3bfb56e7965635038021b38714294f40" have entirely different histories.

2 changed files with 5 additions and 7 deletions

View file

@ -57,8 +57,6 @@
group = "users";
};
age.identityPaths = [ "/root/.ssh/id_rsa" ];
# This option defines the first version of NixOS you have installed on this particular machine,
# and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.
#

View file

@ -18,8 +18,8 @@
fsType = "zfs";
};
fileSystems."/home" =
{ device = "zpool/home";
fileSystems."/nix" =
{ device = "zpool/nix";
fsType = "zfs";
};
@ -28,13 +28,13 @@
fsType = "zfs";
};
fileSystems."/nix" =
{ device = "zpool/nix";
fileSystems."/home" =
{ device = "zpool/home";
fsType = "zfs";
};
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/001D-B2B7";
{ device = "/dev/disk/by-uuid/0642-E087";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
};