Compare commits
2 commits
be638b274d
...
83db5399d7
Author | SHA1 | Date | |
---|---|---|---|
83db5399d7 | |||
4b173581dc |
1 changed files with 30 additions and 35 deletions
|
@ -10,46 +10,41 @@
|
||||||
boot.kernelModules = [ "kvm-amd" ];
|
boot.kernelModules = [ "kvm-amd" ];
|
||||||
boot.extraModulePackages = [ ];
|
boot.extraModulePackages = [ ];
|
||||||
|
|
||||||
fileSystems."/" =
|
fileSystems."/" = {
|
||||||
{
|
device = "rpool/nixos/root";
|
||||||
device = "rpool/nixos/root";
|
fsType = "zfs";
|
||||||
fsType = "zfs";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/home" =
|
fileSystems."/home" = {
|
||||||
{
|
device = "rpool/nixos/home";
|
||||||
device = "rpool/nixos/home";
|
fsType = "zfs";
|
||||||
fsType = "zfs";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/nix" =
|
fileSystems."/nix" = {
|
||||||
{
|
device = "rpool/nixos/nixnew";
|
||||||
device = "rpool/nixos/nixnew";
|
fsType = "zfs";
|
||||||
fsType = "zfs";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/var/lib" =
|
fileSystems."/var/lib" = {
|
||||||
{
|
device = "rpool/nixos/var/lib";
|
||||||
device = "rpool/nixos/var/lib";
|
fsType = "zfs";
|
||||||
fsType = "zfs";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/var/log" =
|
fileSystems."/var/log" = {
|
||||||
{
|
device = "rpool/nixos/var/log";
|
||||||
device = "rpool/nixos/var/log";
|
fsType = "zfs";
|
||||||
fsType = "zfs";
|
};
|
||||||
};
|
|
||||||
|
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{
|
device = "/dev/disk/by-uuid/3278-8D00";
|
||||||
device = "/dev/disk/by-uuid/3278-8D00";
|
fsType = "vfat";
|
||||||
fsType = "vfat";
|
options = [ "nofail" ];
|
||||||
};
|
};
|
||||||
fileSystems."/boot2" =
|
fileSystems."/boot2" = {
|
||||||
{
|
device = "/dev/disk/by-uuid/3366-F71E";
|
||||||
device = "/dev/disk/by-uuid/3366-F71E";
|
fsType = "vfat";
|
||||||
fsType = "vfat";
|
options = [ "nofail" ];
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||||
|
|
Loading…
Add table
Reference in a new issue