mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
27 lines
549 B
Nix
27 lines
549 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
inherit (lib) mkDefault mkEnableOption mkIf mkMerge;
|
|
|
|
cfg = config.microsoft-surface.ipts;
|
|
|
|
in {
|
|
options.microsoft-surface.ipts = {
|
|
enable = mkEnableOption "Enable IPTSd for Microsoft Surface";
|
|
};
|
|
|
|
config = mkMerge [
|
|
{
|
|
microsoft-surface.ipts.enable = mkDefault false;
|
|
}
|
|
|
|
(mkIf cfg.enable {
|
|
systemd.services.iptsd = {
|
|
description = "IPTSD";
|
|
path = with pkgs; [ iptsd ];
|
|
script = "iptsd";
|
|
wantedBy = [ "multi-user.target" ];
|
|
};
|
|
})
|
|
];
|
|
}
|