From 1ad87d46c6f5289ee16e554e769211532f7d77b0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Thu, 5 Jun 2025 01:04:54 +0300 Subject: [PATCH] Adjust generic conf --- hosts/nixos/configuration.nix | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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;