more qcow/installer-iso fixes

Signed-off-by: ahuston-0 <aliceghuston@gmail.com>
This commit is contained in:
ahuston-0 2024-06-03 19:30:55 -04:00 committed by Alice Huston
parent 7f858e17dc
commit f4ec16755b
2 changed files with 8 additions and 3 deletions

View File

@ -1,4 +1,9 @@
{ config, pkgs, ... }: {
config,
lib,
pkgs,
...
}:
{ {
imports = [ imports = [
./programs.nix ./programs.nix
@ -45,7 +50,7 @@
}) { inherit (pkgs) system; }).fwupd; }) { inherit (pkgs) system; }).fwupd;
fprintd.enable = true; fprintd.enable = true;
openssh.enable = false; openssh.enable = lib.mkDefault false;
spotifyd = { spotifyd = {
enable = true; enable = true;

View File

@ -43,7 +43,7 @@ in
"i915.enable_guc=2" "i915.enable_guc=2"
]; ];
kernel.sysctl = { kernel.sysctl = {
"vm.overcommit_memory" = 1; "vm.overcommit_memory" = lib.mkForce 1;
"vm.swappiness" = 10; "vm.swappiness" = 10;
}; };
extraModprobeConfig = '' extraModprobeConfig = ''