From ee03d251de378647c40e73f50e578fa5199596f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Wed, 28 May 2025 17:07:19 +0200 Subject: [PATCH] try enabling gtk --- nix/configurations/vm.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/nix/configurations/vm.nix b/nix/configurations/vm.nix index 253d65a4..4444f7d1 100644 --- a/nix/configurations/vm.nix +++ b/nix/configurations/vm.nix @@ -55,6 +55,8 @@ in }; hm = {nixosConfig, ...}: { + home.packages = [pkgs.xterm pkgs.dconf]; + programs.alacritty.enable = true; programs.kitty.enable = true; xdg.configFile = { "xmonad/xmonad.hs".text = '' @@ -65,7 +67,7 @@ in xmonad $ def { modMask = mod4Mask - , terminal = "kitty" + , terminal = "xterm" } ''; }; @@ -76,6 +78,13 @@ in package = pkgs.posy-cursors; size = 72; }; + + gtk = { + enable = true; + }; + xsession = { + enable = true; + }; }; # VM specifics