fix: Change default swap size settings

This commit is contained in:
2025-12-04 11:41:07 -05:00
committed by Hunter Halloran
parent 5b4f8dd2df
commit 2ad12ab729
2 changed files with 9 additions and 9 deletions

View File

@@ -39,7 +39,7 @@ let
swap = { swap = {
name = "swap"; name = "swap";
label = "swap"; label = "swap";
size = "34G"; size = lib.mkDefault "34G";
content = { type = "swap"; }; content = { type = "swap"; };
}; };

View File

@@ -1,5 +1,4 @@
{ config, lib, modulesPath, ... }: { config, lib, modulesPath, ... }:
{ {
imports = imports =
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
@@ -10,14 +9,15 @@
boot.kernelModules = [ "kvm-intel" ]; boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
boot.kernelParams = [ boot.kernelParams = [
"quiet" "quiet"
"splash" "splash"
"boot.shell_on_fail" "boot.shell_on_fail"
"udev.log_priority=3" "udev.log_priority=3"
"rd.systemd.show_status=auto" "rd.systemd.show_status=auto"
]; ];
disko.devices.disk.main.content.partitions.swap.size = lib.mkOverride "16G"; disko.devices.disk.main.content.partitions.swap.size = "16G";
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
} }