stockholm/krebs/3modules/fetchWallpaper.nix

91 lines
2.1 KiB
Nix
Raw Normal View History

2015-12-12 16:50:33 +00:00
{ config, lib, pkgs, ... }:
2016-02-14 15:43:44 +00:00
with config.krebs.lib;
2015-12-12 16:50:33 +00:00
let
cfg = config.krebs.fetchWallpaper;
2015-12-12 16:50:33 +00:00
out = {
options.krebs.fetchWallpaper = api;
2016-02-14 15:43:44 +00:00
config = lib.mkIf cfg.enable imp;
2015-12-12 16:50:33 +00:00
};
api = {
enable = mkEnableOption "fetch wallpaper";
url = mkOption {
type = types.str;
};
timerConfig = mkOption {
type = types.unspecified;
default = {
OnCalendar = "*:00,10,20,30,40,50";
};
};
stateDir = mkOption {
type = types.str;
default = "/var/lib/wallpaper";
2015-12-12 16:50:33 +00:00
};
display = mkOption {
type = types.str;
default = ":11";
};
unitConfig = mkOption {
type = types.attrsOf types.str;
description = "Extra unit configuration for fetchWallpaper to define conditions and assertions for the unit";
example = literalExample ''
# do not start when running on umts
{ ConditionPathExists = "!/var/run/ppp0.pid"; }
'';
default = {};
};
2015-12-12 16:50:33 +00:00
};
fetchWallpaperScript = pkgs.writeScript "fetchWallpaper" ''
#! ${pkgs.bash}/bin/bash
2015-12-12 16:50:33 +00:00
mkdir -p ${shell.escape cfg.stateDir}
curl -s -o ${shell.escape cfg.stateDir}/wallpaper -z ${shell.escape cfg.stateDir}/wallpaper ${shell.escape cfg.url}
feh --no-fehbg --bg-scale ${shell.escape cfg.stateDir}/wallpaper
'';
imp = {
users.users.fetchWallpaper = {
2015-12-12 16:50:33 +00:00
name = "fetchWallpaper";
2015-12-26 04:55:13 +00:00
uid = genid "fetchWallpaper";
2015-12-12 16:50:33 +00:00
description = "fetchWallpaper user";
home = cfg.stateDir;
createHome = true;
2015-12-12 16:50:33 +00:00
};
systemd.timers.fetchWallpaper = {
description = "fetch wallpaper timer";
wantedBy = [ "timers.target" ];
timerConfig = cfg.timerConfig;
};
systemd.services.fetchWallpaper = {
description = "fetch wallpaper";
after = [ "network.target" ];
path = with pkgs; [
curl
feh
];
environment = {
URL = cfg.url;
DISPLAY = cfg.display;
};
restartIfChanged = true;
serviceConfig = {
Type = "simple";
ExecStart = fetchWallpaperScript;
User = "fetchWallpaper";
};
unitConfig = cfg.unitConfig;
2015-12-12 16:50:33 +00:00
};
};
in out