24 lines
477 B
Nix
24 lines
477 B
Nix
|
{ config, pkgs, inputs, lib, ... }: {
|
||
|
imports = [
|
||
|
../cli.nix
|
||
|
./disks.nix
|
||
|
"${inputs.nixpkgs-stable}/nixos/modules/profiles/qemu-guest.nix"
|
||
|
];
|
||
|
networking.hostName = "mb1";
|
||
|
environment.systemPackages = with pkgs; [ ];
|
||
|
|
||
|
boot.loader.grub = {
|
||
|
devices = [ "/dev/vda" ];
|
||
|
efiSupport = true;
|
||
|
efiInstallAsRemovable = true;
|
||
|
};
|
||
|
|
||
|
zramSwap = {
|
||
|
enable = true;
|
||
|
algorithm = "zstd";
|
||
|
memoryPercent = 80;
|
||
|
};
|
||
|
|
||
|
time.timeZone = "Europe/London";
|
||
|
}
|