Add basic i3wm setup

This commit is contained in:
2024-09-02 20:09:16 -07:00
parent 84168e2d9b
commit 343b7f5ff2
2 changed files with 11 additions and 0 deletions

View File

@@ -110,6 +110,7 @@ in
./modules/applications/emacs/default.nix
./modules/games/lutris/default.nix
./modules/window_managers/hyprland/default.nix
./modules/window_managers/i3/default.nix
];
programs.bash.enable = true;

View File

@@ -0,0 +1,10 @@
{ config, lib, pkgs, ... }:
{
xsession.windowManager.i3 = {
enable = true;
config = {
modifier = "Mod4";
};
};
}