nixos-conf/machine-confs/generic.nix

20 lines
374 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
{
networking.hostName = "nixos";
imports = [ ../base.nix ];
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
2024-08-05 18:22:23 +03:00
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
swapDevices = [
{
device = "/var/lib/swapfile";
size = 8 * 1024;
}
];
}