20 lines
363 B
Nix
20 lines
363 B
Nix
{ conf, ... }:
|
|
{
|
|
home.file.wallpaper = {
|
|
target = ".config/hypr/${conf.wallpaper}";
|
|
source = ../wallpapers/${conf.wallpaper};
|
|
};
|
|
|
|
home.file.hyprpaper = let
|
|
file = home.file.wallpaper.target;
|
|
in {
|
|
target = ".config/hypr/hyprpaper.conf";
|
|
text = ''
|
|
preload = ${file}
|
|
|
|
wallpaper = ,${file}
|
|
|
|
splash = false
|
|
'';
|
|
};
|
|
}
|