This commit is contained in:
TheWanderingCrow 2024-09-21 15:21:16 -04:00
parent a1ab1870a4
commit aa3a57cd68

15
modules/i3/default.nix Normal file
View file

@ -0,0 +1,15 @@
{ inputs, pkgs, lib, config, ...}: {
options.i3.enable = lib.mkEnableOption "enables i3";
config = lib.mkIf config.i3.enable {
xserver = {
enable = true;
windowManager.i3 = {
enable = true;
configFile = ./i3.config;
};
displayManager.lightdm.enable = false;
};
};
}