more modules :3

This commit is contained in:
k3t
2026-06-24 01:20:56 -06:00
parent 1b97dc04c2
commit 0e73b7f9a5
4 changed files with 9 additions and 2 deletions
+2
View File
@@ -133,6 +133,8 @@
./modules/sys/fs/mounts/swap.nix
./modules/sys/hw/boot.nix
./modules/sys/hw/hyperv.nix
./modules/sys/nix.nix
./modules/sys/perf.nix
./modules/sys/pkgs.nix
+1 -1
View File
@@ -2,6 +2,6 @@
fileSystems."/boot" =
{ device = "/dev/disk/by-label/EFI";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
options = [ "fmask=0077" "dmask=0077" "x-systemd.automount,x-systemd.idle-timeout=1min" ];
};
}
+1 -1
View File
@@ -1,5 +1,5 @@
{
swapDevices = [{ device = "/dev/disk/by-label/Swap";
options = [ "discard" "nofail" ];
options = [ "discard" "nofail" "x-systemd.device-timeout=5" ];
}];
}
+5
View File
@@ -0,0 +1,5 @@
{
virtualisation.hypervGuest = {
enable = true;
};
}