19 lines
225 B
Nix
19 lines
225 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
xdg.configFile = {
|
|
"hypr/hyprland.conf".source = ./hyprland.conf;
|
|
"hypr/show-hide.sh".source = ./show-hide.sh;
|
|
};
|
|
|
|
imports = [
|
|
./hyprlock.nix
|
|
./hypridle.nix
|
|
];
|
|
}
|