14 lines
215 B
Nix
14 lines
215 B
Nix
|
_:
|
||
|
{
|
||
|
boot.initrd.availableKernelModules = [
|
||
|
"ata_piix"
|
||
|
"vmw_pvscsi"
|
||
|
];
|
||
|
boot.loader.grub.splashImage = null;
|
||
|
nix = {
|
||
|
daemonIONiceLevel = 1;
|
||
|
daemonNiceLevel = 1;
|
||
|
};
|
||
|
sound.enable = false;
|
||
|
}
|