nixos-conf/hosts/nixos/configuration.nix

12 lines
318 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;
}