swww: add swww service module for swww-daemon (#6543)

This commit is contained in:
Yiheng He 2025-03-19 03:32:10 +08:00 committed by GitHub
parent fb74bb76d9
commit 22a36aa709
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 72 additions and 0 deletions

37
modules/services/swww.nix Normal file
View file

@ -0,0 +1,37 @@
{ config, lib, pkgs, ... }:
let cfg = config.services.swww;
in {
meta.maintainers = with lib.hm.maintainers; [ hey2022 ];
options.services.swww = {
enable =
lib.mkEnableOption "swww, a Solution to your Wayland Wallpaper Woes";
package = lib.mkPackageOption pkgs "swww" { };
};
config = lib.mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.swww" pkgs
lib.platforms.linux)
];
home.packages = [ cfg.package ];
systemd.user.services.swww = {
Install = { WantedBy = [ config.wayland.systemd.target ]; };
Unit = {
ConditionEnvironment = "WAYLAND_DISPLAY";
Description = "swww-daemon";
After = [ config.wayland.systemd.target ];
PartOf = [ config.wayland.systemd.target ];
};
Service = {
ExecStart = "${lib.getExe' cfg.package "swww-daemon"}";
Restart = "always";
RestartSec = 10;
};
};
};
}