14 lines
190 B
Nix
14 lines
190 B
Nix
{ config, pkgs, ... }:
|
|
|
|
|
|
{
|
|
systemd.services.wallpaper = {
|
|
serviceConfig = {
|
|
# ...
|
|
};
|
|
script = ''
|
|
linux-wallpaperengine --screen-root DP-2 2777842128
|
|
'';
|
|
};
|
|
}
|