mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
27 lines
702 B
Nix
27 lines
702 B
Nix
|
{ config, pkgs, lib, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.services.spice-autorandr;
|
||
|
in
|
||
|
{
|
||
|
options = {
|
||
|
services.spice-autorandr = {
|
||
|
enable = lib.mkEnableOption (lib.mdDoc "spice-autorandr service that will automatically resize display to match SPICE client window size.");
|
||
|
package = lib.mkPackageOptionMD pkgs "spice-autorandr" { };
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = lib.mkIf cfg.enable {
|
||
|
environment.systemPackages = [ cfg.package ];
|
||
|
|
||
|
systemd.user.services.spice-autorandr = {
|
||
|
wantedBy = [ "default.target" ];
|
||
|
after = [ "spice-vdagentd.service" ];
|
||
|
serviceConfig = {
|
||
|
ExecStart = "${cfg.package}/bin/spice-autorandr";
|
||
|
Restart = "on-failure";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|