All checks were successful
Check flake / build-amd64-linux (push) Successful in 1m15s
26 lines
374 B
Nix
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;
|
|
};
|
|
};
|
|
}
|