blob: 786df6d400f088c115325bd401120551e1b8147a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{ config, pkgs, ... }:
{
krebs.fetchWallpaper = {
enable = true;
display = ":0";
unitConfig.ConditionPathExists = "!/var/run/ppp0.pid";
timerConfig = {
OnCalendar = "*:0/30";
};
url = "http://echelon/wallpaper.png";
};
}
|