From dc2124e37a14fab8f4a68500a1039fbe9de56ddd Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Thu, 10 Jun 2021 15:55:32 -0400 Subject: [PATCH] update dev configurations --- hosts/dev-cli/configuration.nix | 3 +-- hosts/dev-gui/configuration.nix | 6 +----- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/hosts/dev-cli/configuration.nix b/hosts/dev-cli/configuration.nix index 322dc6f..a5a0448 100644 --- a/hosts/dev-cli/configuration.nix +++ b/hosts/dev-cli/configuration.nix @@ -1,6 +1,5 @@ -{ config, lib, ... }: +{ ... }: { - services.qemuGuest.enable = true; sconfig.profile = "server"; services.getty.autologinUser = "root"; fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; diff --git a/hosts/dev-gui/configuration.nix b/hosts/dev-gui/configuration.nix index 806b29f..ced67ef 100644 --- a/hosts/dev-gui/configuration.nix +++ b/hosts/dev-gui/configuration.nix @@ -1,9 +1,5 @@ { config, lib, ... }: { - services.qemuGuest.enable = true; - sconfig.profile = "desktop"; - sconfig.gnome = true; + imports = [ ../neo/configuration.nix ]; services.getty.autologinUser = "root"; - fileSystems."/" = { device = "/dev/vda1"; fsType = "ext4"; }; - boot.loader.grub.device = "nodev"; }