nixos/home/hyprland/xdg.nix

10 lines
198 B
Nix
Raw Normal View History

2024-07-17 20:22:04 +00:00
{ config, ... }:
{
2024-02-29 08:27:26 +00:00
xdg.configFile = {
"hypr/hyprpaper.conf" = {
source = config.lib.file.mkOutOfStoreSymlink ./. + "/hyprpaper.conf";
target = "hypr/hyprpaper.conf";
};
};
}