more modules :3
This commit is contained in:
@@ -133,6 +133,8 @@
|
|||||||
./modules/sys/fs/mounts/swap.nix
|
./modules/sys/fs/mounts/swap.nix
|
||||||
|
|
||||||
./modules/sys/hw/boot.nix
|
./modules/sys/hw/boot.nix
|
||||||
|
./modules/sys/hw/hyperv.nix
|
||||||
|
|
||||||
./modules/sys/nix.nix
|
./modules/sys/nix.nix
|
||||||
./modules/sys/perf.nix
|
./modules/sys/perf.nix
|
||||||
./modules/sys/pkgs.nix
|
./modules/sys/pkgs.nix
|
||||||
|
|||||||
@@ -2,6 +2,6 @@
|
|||||||
fileSystems."/boot" =
|
fileSystems."/boot" =
|
||||||
{ device = "/dev/disk/by-label/EFI";
|
{ device = "/dev/disk/by-label/EFI";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0077" "dmask=0077" ];
|
options = [ "fmask=0077" "dmask=0077" "x-systemd.automount,x-systemd.idle-timeout=1min" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
swapDevices = [{ device = "/dev/disk/by-label/Swap";
|
swapDevices = [{ device = "/dev/disk/by-label/Swap";
|
||||||
options = [ "discard" "nofail" ];
|
options = [ "discard" "nofail" "x-systemd.device-timeout=5" ];
|
||||||
}];
|
}];
|
||||||
}
|
}
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
{
|
||||||
|
virtualisation.hypervGuest = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user