ooknet/home/profiles/desktop-environments/hyprland.nix

19 lines
336 B
Nix

{ lib, config, ... }:
let
inherit (lib) mkIf;
desktop = config.ooknet.desktop;
in
{
config = mkIf (desktop.environment == "hyprland") {
ooknet.wayland = {
enable = true;
compositor = "hyprland";
launcher = "rofi";
locker = "hyprlock";
notification = "mako";
bar = "waybar";
};
};
}