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

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