feat(hyprshade): add hyprshaders

This commit is contained in:
Mohammad Rafiq 2025-03-25 07:01:04 +08:00
parent 00b585c354
commit f0e9e264e5
No known key found for this signature in database
3 changed files with 25 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ inputs, pkgs, ... }:
{
home.packages = [ pkgs.hyprshade ];
xdg.configFile."hypr/hyprshade.toml" = {
@ -15,4 +15,9 @@
end_time = 07:00:00 # optional if more than one shader has start_time
'';
};
xdg.configFile."hypr/shaders" = {
enable = true;
recursive = true;
source = "${inputs.hyprshaders}/shaders";
};
}