nixfiles/nixos/i3.nix

14 lines
174 B
Nix

_: let
super = "Mod4";
in {
xsession.windowManager.i3 = {
enable = true;
config = {
modifier = super;
fonts = [ ];
};
bars = [
];
};
}