Files
nix-config/modules/nixos/system/desktop/hyprland.nix
Jordan Holt cf8d18515f
All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m15s
treewide: remove stylix module
2025-06-14 17:12:55 +01:00

26 lines
374 B
Nix

{
config,
lib,
...
}:
let
inherit (lib)
mkEnableOption
mkIf
;
cfg = config.modules.system.desktop.hyprland;
in
{
options.modules.system.desktop.hyprland.enable = mkEnableOption "hyprland";
config = mkIf cfg.enable {
networking.networkmanager.enable = true;
programs.hyprland = {
enable = true;
withUWSM = true;
};
};
}