19 lines
225 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
{
xdg.configFile = {
"hypr/hyprland.conf".source = ./hyprland.conf;
2025-03-13 17:43:41 -04:00
"hypr/show-hide.sh".source = ./show-hide.sh;
};
imports = [
./hyprlock.nix
./hypridle.nix
];
}