mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
6afb255d97
these changes were generated with nixq 0.0.2, by running nixq ">> lib.mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> mdDoc[remove] Argument[keep]" --batchmode nixos/**.nix nixq ">> Inherit >> mdDoc[remove]" --batchmode nixos/**.nix two mentions of the mdDoc function remain in nixos/, both of which are inside of comments. Since lib.mdDoc is already defined as just id, this commit is a no-op as far as Nix (and the built manual) is concerned.
59 lines
1.5 KiB
Nix
59 lines
1.5 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.hardware.argonone;
|
|
in
|
|
{
|
|
options.services.hardware.argonone = {
|
|
enable = lib.mkEnableOption "the driver for Argon One Raspberry Pi case fan and power button";
|
|
package = lib.mkOption {
|
|
type = lib.types.package;
|
|
default = pkgs.argononed;
|
|
defaultText = lib.literalExpression "pkgs.argononed";
|
|
description = ''
|
|
The package implementing the Argon One driver
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
hardware.i2c.enable = true;
|
|
hardware.deviceTree.overlays = [
|
|
{
|
|
name = "argononed";
|
|
dtboFile = "${cfg.package}/boot/overlays/argonone.dtbo";
|
|
}
|
|
{
|
|
name = "i2c1-okay-overlay";
|
|
dtsText = ''
|
|
/dts-v1/;
|
|
/plugin/;
|
|
/ {
|
|
compatible = "brcm,bcm2711";
|
|
fragment@0 {
|
|
target = <&i2c1>;
|
|
__overlay__ {
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
'';
|
|
}
|
|
];
|
|
environment.systemPackages = [ cfg.package ];
|
|
systemd.services.argononed = {
|
|
description = "Argon One Raspberry Pi case Daemon Service";
|
|
wantedBy = [ "multi-user.target" ];
|
|
serviceConfig = {
|
|
Type = "forking";
|
|
ExecStart = "${cfg.package}/bin/argononed";
|
|
PIDFile = "/run/argononed.pid";
|
|
Restart = "on-failure";
|
|
};
|
|
};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ misterio77 ];
|
|
|
|
}
|