mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
47 lines
1.2 KiB
Nix
47 lines
1.2 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
let
|
|
cfg = config.hardware.tuxedo-rs;
|
|
|
|
in
|
|
{
|
|
options = {
|
|
hardware.tuxedo-rs = {
|
|
enable = lib.mkEnableOption "Rust utilities for interacting with hardware from TUXEDO Computers";
|
|
|
|
tailor-gui.enable = lib.mkEnableOption "tailor-gui, an alternative to TUXEDO Control Center, written in Rust";
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable (lib.mkMerge [
|
|
{
|
|
hardware.tuxedo-keyboard.enable = true;
|
|
|
|
systemd = {
|
|
services.tailord = {
|
|
enable = true;
|
|
description = "Tuxedo Tailor hardware control service";
|
|
after = [ "systemd-logind.service" ];
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
serviceConfig = {
|
|
Type = "dbus";
|
|
BusName = "com.tux.Tailor";
|
|
ExecStart = "${pkgs.tuxedo-rs}/bin/tailord";
|
|
Environment = "RUST_BACKTRACE=1";
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
|
|
services.dbus.packages = [ pkgs.tuxedo-rs ];
|
|
|
|
environment.systemPackages = [ pkgs.tuxedo-rs ];
|
|
}
|
|
(lib.mkIf cfg.tailor-gui.enable {
|
|
environment.systemPackages = [ pkgs.tailor-gui ];
|
|
})
|
|
]);
|
|
|
|
meta.maintainers = with lib.maintainers; [ mrcjkb ];
|
|
}
|