dotfiles/machines/common/nixos/hyprland.nix
2024-09-20 08:57:36 +02:00

8 lines
168 B
Nix

{ config, lib, ... }:
{
config = lib.mkIf (config.dotfiles.desktop == "hyprland") {
programs.hyprland.enable = true;
services.hypridle.enable = true;
};
}