aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/default.nix8
-rw-r--r--gui/xmonad.nix16
2 files changed, 13 insertions, 11 deletions
diff --git a/gui/default.nix b/gui/default.nix
index 2d27f7c..d83b10f 100644
--- a/gui/default.nix
+++ b/gui/default.nix
@@ -25,14 +25,6 @@
'';
};
- xsession = {
- enable = true;
- initExtra = ''
- xsetroot -cursor_name left_ptr
- xset b off
- '';
- };
-
imports = [
# desktop environment
./xmonad.nix
diff --git a/gui/xmonad.nix b/gui/xmonad.nix
index 85f86c2..da7d73a 100644
--- a/gui/xmonad.nix
+++ b/gui/xmonad.nix
@@ -1,9 +1,19 @@
{ pkgs, ... }:
{
- xsession.windowManager.xmonad = {
+ xsession = {
enable = true;
- enableContribAndExtras = true;
- config = ./conf/xmonad.hs;
+
+ pointerCursor = {
+ package = pkgs.vanilla-dmz;
+ name = "Vanilla-DMZ-AA";
+ size = 16;
+ };
+
+ windowManager.xmonad = {
+ enable = true;
+ enableContribAndExtras = true;
+ config = ./conf/xmonad.hs;
+ };
};
}