nixpkgs/nixos/modules/programs/streamdeck-ui.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
744 B
Nix
Raw Normal View History

2022-07-08 16:49:09 +00:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.programs.streamdeck-ui;
in
{
2022-07-08 16:49:09 +00:00
options.programs.streamdeck-ui = {
enable = mkEnableOption "streamdeck-ui";
2022-07-08 16:49:09 +00:00
autoStart = mkOption {
default = true;
type = types.bool;
description = "Whether streamdeck-ui should be started automatically.";
2022-07-08 16:49:09 +00:00
};
package = mkPackageOption pkgs "streamdeck-ui" {
default = [ "streamdeck-ui" ];
};
2022-07-08 16:49:09 +00:00
};
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [
cfg.package
2023-08-12 03:17:37 +00:00
(mkIf cfg.autoStart (makeAutostartItem { name = "streamdeck-ui-noui"; package = cfg.package; }))
2022-07-08 16:49:09 +00:00
];
services.udev.packages = [ cfg.package ];
2022-07-08 16:49:09 +00:00
};
meta.maintainers = with maintainers; [ majiir ];
}