Add hypr (x11) support

This commit is contained in:
TheWanderingCrow 2024-09-21 15:57:53 -04:00
parent aa3a57cd68
commit c9cf321b34
7 changed files with 152 additions and 21 deletions

View file

@ -1,15 +0,0 @@
{ 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;
};
};
}