Files
nix-dotfiles/users/alice/home/hypr/default.nix
T

19 lines
225 B
Nix
Raw Normal View History

2024-05-13 23:07:40 -04:00
{
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;
};
2024-10-20 01:26:35 -04:00
imports = [
./hyprlock.nix
./hypridle.nix
];
2024-05-13 23:07:40 -04:00
}