From e808aa4d67ccdf5c8e581f007ec2ca9fb27170f4 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 0bb3f5d..12165f9 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -30,5 +30,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"; }