{ 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"; }