mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-10 10:47:02 +00:00
14 lines
292 B
Nix
14 lines
292 B
Nix
|
{
|
||
|
services.hyprpaper = {
|
||
|
enable = true;
|
||
|
settings = { };
|
||
|
};
|
||
|
|
||
|
nmt.script = ''
|
||
|
config=home-files/.config/hypr/hyprpaper.conf
|
||
|
clientServiceFile=home-files/.config/systemd/user/hyprpaper.service
|
||
|
assertPathNotExists $config
|
||
|
assertFileExists $clientServiceFile
|
||
|
'';
|
||
|
}
|