aboutsummaryrefslogtreecommitdiff
path: root/modules/desktop/i3.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-08 17:04:52 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-08 17:04:52 -0800
commit3c735e9483f35fe1c1373357facf879e5d449fb2 (patch)
tree64ab3d826e00c4f78e2bb8a9b87fea48bdc55e48 /modules/desktop/i3.nix
parentdesktop: configuration for i3 (diff)
downloadinfra-3c735e9483f35fe1c1373357facf879e5d449fb2.tar.gz
i3: move configuration to home-manager
Diffstat (limited to 'modules/desktop/i3.nix')
-rw-r--r--modules/desktop/i3.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/modules/desktop/i3.nix b/modules/desktop/i3.nix
deleted file mode 100644
index aecbf63..0000000
--- a/modules/desktop/i3.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-{
- services.xserver.windowManager = {
- i3.enable = true;
- };
-
- programs.rofi = {
- enable = true;
- theme = "purple";
-
- extraConfig = {
- modi = "drun";
- show-icons = true;
- icon-theme = "Numix-Square";
- combi-modi = "window,drun,ssh";
- };
- };
-}