Merge branch 'main' of github.com:FredzyW/nix

This commit is contained in:
FredzyW 2024-06-04 09:21:44 +02:00
commit bea0d05f3c

14
moduler/common/i3.nix Normal file
View file

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