dotfiles/machines/common/linux/hyprland.nix
2024-08-13 01:13:08 +02:00

8 lines
168 B
Nix

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