From 70a8af639520186d402cd3b7ca674339deb054a0 Mon Sep 17 00:00:00 2001 From: Jordan Holt Date: Sat, 15 Mar 2025 23:07:20 +0000 Subject: [PATCH] hyprland: add clipse, kitty --- modules/nixos/system/desktop/hyprland.nix | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/modules/nixos/system/desktop/hyprland.nix b/modules/nixos/system/desktop/hyprland.nix index 9b2cec3..4ea83c5 100644 --- a/modules/nixos/system/desktop/hyprland.nix +++ b/modules/nixos/system/desktop/hyprland.nix @@ -6,17 +6,21 @@ }: let + inherit (lib) + mkIf + mkOption + ; cfg = config.modules.system.desktop.hyprland; in { options.modules.system.desktop.hyprland = { - enable = lib.mkOption { + enable = mkOption { default = false; example = true; }; }; - config = lib.mkIf cfg.enable { + config = mkIf cfg.enable { programs.hyprland = { enable = true; # withUWSM = true; @@ -28,10 +32,12 @@ in user.packages = with pkgs.unstable; [ anyrun + clipse hyprpaper + kitty mpv - walker waybar + wl-clipboard ]; environment.systemPackages = with pkgs; [