diff --git a/hosts/nixos/configuration.nix b/hosts/nixos/configuration.nix index c73a14e..2708940 100644 --- a/hosts/nixos/configuration.nix +++ b/hosts/nixos/configuration.nix @@ -1,11 +1,9 @@ { lib, ... }: { - networking.hostName = "nixos"; - - imports = [ ../../shared/base.nix ]; - - #Many installs will need this, and it won't hurt either way - services.qemuGuest.enable = true; + imports = [ + ../../shared/base.nix + ../../shared/hardware/vm.nix + ]; #Prevent user from being locked out of the system before switching to proper config users.mutableUsers = lib.mkForce true;