nixcfg/nixosModules/desktop/hyprland/default.nix

17 lines
219 B
Nix

{
config,
inputs,
lib,
pkgs,
...
}: {
config = lib.mkIf config.ar.desktop.hyprland.enable {
programs = {
hyprland = {
enable = true;
package = pkgs.hyprland;
};
};
};
}