1

Home: Enable hyprland + niri depending on their system module state

This commit is contained in:
2025-12-26 13:07:07 +01:00
parent cec5ec5493
commit 0d20883f4f
2 changed files with 3 additions and 2 deletions

View File

@ -98,7 +98,7 @@ in
};
hyprland = {
enable = false;
enable = nixosConfig.programs.hyprland.enable;
dunst.enable = !config.modules.hyprpanel.enable; # Disable for hyprpanel
bars.enable = false;
dynamicCursor.enable = false;
@ -291,7 +291,7 @@ in
neovide = !headless;
};
niri.enable = !headless;
niri.enable = nixosConfig.programs.niri.enable;
nnn.enable = false; # Use yazi
qutebrowser.enable = !headless;
rmpc.enable = !headless;