mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
78 lines
1.9 KiB
Nix
78 lines
1.9 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.random-background;
|
|
|
|
in
|
|
|
|
{
|
|
meta.maintainers = [ maintainers.rycee ];
|
|
|
|
options = {
|
|
services.random-background = {
|
|
enable = mkEnableOption "random desktop background";
|
|
|
|
imageDirectory = mkOption {
|
|
type = types.str;
|
|
example = "%h/backgrounds";
|
|
description = ''
|
|
The directory of images from which a background should be
|
|
chosen. Should be formatted in a way understood by systemd,
|
|
e.g., '%h' is the home directory.
|
|
'';
|
|
};
|
|
|
|
interval = mkOption {
|
|
default = null;
|
|
type = types.nullOr types.str;
|
|
example = "1h";
|
|
description = ''
|
|
The duration between changing background image, set to null
|
|
to only set background when logging in. Should be formatted
|
|
as a duration understood by systemd.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable (
|
|
mkMerge ([
|
|
{
|
|
systemd.user.services.random-background = {
|
|
Unit = {
|
|
Description = "Set random desktop background using feh";
|
|
After = [ "graphical-session-pre.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
|
|
Service = {
|
|
Type = "oneshot";
|
|
ExecStart = "${pkgs.feh}/bin/feh --randomize --bg-fill ${cfg.imageDirectory}";
|
|
IOSchedulingClass = "idle";
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
};
|
|
}
|
|
(mkIf (cfg.interval != null) {
|
|
systemd.user.timers.random-background = {
|
|
Unit = {
|
|
Description = "Set random desktop background using feh";
|
|
};
|
|
|
|
Timer = {
|
|
OnUnitActiveSec = cfg.interval;
|
|
};
|
|
|
|
Install = {
|
|
WantedBy = [ "timers.target" ];
|
|
};
|
|
};
|
|
})
|
|
]));
|
|
}
|