From 378a4dcef78b589bf35a958ce25fdbeba0539247 Mon Sep 17 00:00:00 2001 From: Haak Saxberg Date: Sat, 30 Jul 2022 16:31:09 -0700 Subject: [PATCH] remove xmonad configuration; we're not actually going to use it --- nix/system/xmonad.nix | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 nix/system/xmonad.nix diff --git a/nix/system/xmonad.nix b/nix/system/xmonad.nix deleted file mode 100644 index 98693b5..0000000 --- a/nix/system/xmonad.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ config, lib, pkgs, ...}: - -{ - displayManager = { - defaultSession = "none+xmonad"; - }; - - windowManager.xmonad = { - enable = true; - enableContribAndExtras = true; - }; -}