diff --git a/configurations/host/minimal.nix b/configurations/host/minimal.nix index 3f5aaa665e..68d4c29fe4 100644 --- a/configurations/host/minimal.nix +++ b/configurations/host/minimal.nix @@ -1,45 +1,44 @@ -{ ... }: -{ +{...}: { nixpkgs.overlays = [ (self: super: { - qemu = super.qemu.override { - alsaSupport = false; - pulseSupport = false; - sdlSupport = false; - jackSupport = false; - gtkSupport = false; - vncSupport = false; - smartcardSupport = false; - spiceSupport = false; - ncursesSupport = false; - libiscsiSupport = false; - tpmSupport = false; # XXX: Probably shouldn't be disabled - hostCpuOnly = true; - }; - # NOTE: Git is used internally in microvm.nix host nixos module - git = super.git.override { - nlsSupport = false; # XXX: Propbably shouldn't be disabled - withManual = false; - pythonSupport = false; - withpcre2 = false; - }; - systemd = super.systemd.override { - # withCompression = false; # XXX - withCryptsetup = false; - withDocumentation = false; - withFido2 = false; - withHomed = false; - withHwdb = false; # XXX - withLibBPF = true; # XXX: Probably should be disabled - withLocaled = false; - # withOomd = false; # XXX - withPCRE2 = false; - withPortabled = false; # XXX - # withResolved = false; # XXX - withShellCompletions = false; - withTpm2Tss = false; - withUserDb = false; - }; - }) + qemu = super.qemu.override { + alsaSupport = false; + pulseSupport = false; + sdlSupport = false; + jackSupport = false; + gtkSupport = false; + vncSupport = false; + smartcardSupport = false; + spiceSupport = false; + ncursesSupport = false; + libiscsiSupport = false; + tpmSupport = false; # XXX: Probably shouldn't be disabled + hostCpuOnly = true; + }; + # NOTE: Git is used internally in microvm.nix host nixos module + git = super.git.override { + nlsSupport = false; # XXX: Propbably shouldn't be disabled + withManual = false; + pythonSupport = false; + withpcre2 = false; + }; + systemd = super.systemd.override { + # withCompression = false; # XXX + withCryptsetup = false; + withDocumentation = false; + withFido2 = false; + withHomed = false; + withHwdb = false; # XXX + withLibBPF = true; # XXX: Probably should be disabled + withLocaled = false; + # withOomd = false; # XXX + withPCRE2 = false; + withPortabled = false; # XXX + # withResolved = false; # XXX + withShellCompletions = false; + withTpm2Tss = false; + withUserDb = false; + }; + }) ]; }