Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
Signed-off-by: Valentin Kharin <[email protected]>
  • Loading branch information
remimimimimi committed Feb 9, 2023
1 parent 0e1e969 commit f89d170
Showing 1 changed file with 40 additions and 41 deletions.
81 changes: 40 additions & 41 deletions configurations/host/minimal.nix
Original file line number Diff line number Diff line change
@@ -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;
};
})
];
}

0 comments on commit f89d170

Please sign in to comment.