From 00cb11370dba18e2e11eccb60d2b383890b21288 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 | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index 19a942f..5ff62ad 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -36,5 +36,16 @@ in }; security.sudo.wheelNeedsPassword = false; + + services.xserver = { + enable = true; + desktopManager.gnome.enable = true; + displayManager.gdm = { + enable = true; + autoSuspend = false; + }; + exportConfiguration = true; + }; + system.stateVersion = "25.05"; }