From 7ac8d0ba86edeb7b7b419ec8869cbe4841deb693 Mon Sep 17 00:00:00 2001 From: Jakob Lechner Date: Mon, 20 Oct 2025 12:09:52 +0200 Subject: [PATCH] Add gnome --- hosts/vm/configuration.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 19a942f..d37779a 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -36,5 +36,22 @@ in }; security.sudo.wheelNeedsPassword = false; + + services.xserver = { + enable = true; + desktopManager.gnome.enable = true; + displayManager = { + autoLogin = { + enable = true; + user = "jalr"; + }; + gdm = { + enable = true; + autoSuspend = false; + }; + }; + exportConfiguration = true; + }; + system.stateVersion = "25.05"; }