nixos-conf/machine-confs/generic.nix

12 lines
315 B
Nix

{ lib, ... }:
{
networking.hostName = "nixos";
imports = [ ../shared/base.nix ];
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
#Prevent user from being locked out of the system before switching to proper config
users.mutableUsers = lib.mkForce true;
}