Add basic i3wm setup
This commit is contained in:
@@ -110,6 +110,7 @@ in
|
|||||||
./modules/applications/emacs/default.nix
|
./modules/applications/emacs/default.nix
|
||||||
./modules/games/lutris/default.nix
|
./modules/games/lutris/default.nix
|
||||||
./modules/window_managers/hyprland/default.nix
|
./modules/window_managers/hyprland/default.nix
|
||||||
|
./modules/window_managers/i3/default.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.bash.enable = true;
|
programs.bash.enable = true;
|
||||||
|
|||||||
10
modules/window_managers/i3/default.nix
Normal file
10
modules/window_managers/i3/default.nix
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
xsession.windowManager.i3 = {
|
||||||
|
enable = true;
|
||||||
|
config = {
|
||||||
|
modifier = "Mod4";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user