dotfiles/machines/common/nixos/hyprland.nix

9 lines
168 B
Nix
Raw Normal View History

2024-08-13 01:13:08 +02:00
{ config, lib, ... }:
{
config = lib.mkIf (config.dotfiles.desktop == "hyprland") {
programs.hyprland.enable = true;
services.hypridle.enable = true;
};
}