feat(hyprland): add hyprcloser

This commit is contained in:
Mohammad Rafiq 2025-03-25 05:30:23 +08:00
parent fa620983be
commit 57ef0b55ca
No known key found for this signature in database
4 changed files with 91 additions and 53 deletions

View file

@ -19,6 +19,7 @@
exec-once = [
"hyprlock"
"clipse -listen"
"hyprcloser"
];
env = [

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, inputs, ... }:
{
home.packages = with pkgs; [
fastfetch # system info
@ -9,5 +9,6 @@
bat
ttyper
hyprpicker
inputs.hyprcloser.packages.${pkgs.stdenv.hostPlatform.system}.default
];
}