nixos/home/hyprland/xdg.nix

9 lines
198 B
Nix
Raw Normal View History

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