This commit is contained in:
TheWanderingCrow 2024-10-13 15:04:00 -04:00
parent 8e3e165e34
commit 113be29171
6 changed files with 155 additions and 1 deletions

View file

@ -4,7 +4,7 @@
./wayland/sway.nix
# X11 desktops here
# ./x11/i3.nix
./x11/i3.nix
];
}

View file

@ -0,0 +1,12 @@
{ inputs, pkgs, lib, config, ...}: {
options.desktop.i3.enable = lib.mkEnableOption "enables i3";
config = {
services.xserver = {
displayManager.startx.enable = true;
windowManager.i3 = {
enable = true;
configFile = "$HOME/.config/i3/config";
};
};
}