Compare commits

..

No commits in common. "83db5399d7f3cd172a0bd43545b98e6c6a08f25d" and "be638b274dd2897bbe34ce098f250d98295f0451" have entirely different histories.

View file

@ -10,41 +10,46 @@
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems."/" = { fileSystems."/" =
device = "rpool/nixos/root"; {
fsType = "zfs"; device = "rpool/nixos/root";
}; fsType = "zfs";
};
fileSystems."/home" = { fileSystems."/home" =
device = "rpool/nixos/home"; {
fsType = "zfs"; device = "rpool/nixos/home";
}; fsType = "zfs";
};
fileSystems."/nix" = { fileSystems."/nix" =
device = "rpool/nixos/nixnew"; {
fsType = "zfs"; device = "rpool/nixos/nixnew";
}; fsType = "zfs";
};
fileSystems."/var/lib" = { fileSystems."/var/lib" =
device = "rpool/nixos/var/lib"; {
fsType = "zfs"; device = "rpool/nixos/var/lib";
}; fsType = "zfs";
};
fileSystems."/var/log" = { fileSystems."/var/log" =
device = "rpool/nixos/var/log"; {
fsType = "zfs"; device = "rpool/nixos/var/log";
}; fsType = "zfs";
};
fileSystems."/boot" = { fileSystems."/boot" =
device = "/dev/disk/by-uuid/3278-8D00"; {
fsType = "vfat"; device = "/dev/disk/by-uuid/3278-8D00";
options = [ "nofail" ]; fsType = "vfat";
}; };
fileSystems."/boot2" = { fileSystems."/boot2" =
device = "/dev/disk/by-uuid/3366-F71E"; {
fsType = "vfat"; device = "/dev/disk/by-uuid/3366-F71E";
options = [ "nofail" ]; fsType = "vfat";
}; };
swapDevices = [ ]; swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";