summary refs log tree commit diff stats
path: root/modules/i3.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/i3.nix')
-rw-r--r--modules/i3.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/modules/i3.nix b/modules/i3.nix
deleted file mode 100644
index 3bba3bb..0000000
--- a/modules/i3.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ config, pkgs, ... }:
-
-{ services.xserver.windowManager.i3 = {
-    enable = true;
-    package = pkgs.i3-gaps;
-  };
-
-  environment.systemPackages = with pkgs; [
-    i3status
-    i3lock-color
-  ];
-
-  imports = [
-    ./window-manager.nix
-  ];
-}