0d9fc34957
GitOrigin-RevId: 5ed481943351e9fd354aeb557679624224de38d5
39 lines
928 B
Nix
39 lines
928 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.programs.digitalbitbox;
|
|
in
|
|
|
|
{
|
|
options.programs.digitalbitbox = {
|
|
enable = mkOption {
|
|
type = types.bool;
|
|
default = false;
|
|
description = lib.mdDoc ''
|
|
Installs the Digital Bitbox application and enables the complementary hardware module.
|
|
'';
|
|
};
|
|
|
|
package = mkOption {
|
|
type = types.package;
|
|
default = pkgs.digitalbitbox;
|
|
defaultText = literalExpression "pkgs.digitalbitbox";
|
|
description = lib.mdDoc "The Digital Bitbox package to use. This can be used to install a package with udev rules that differ from the defaults.";
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = [ cfg.package ];
|
|
hardware.digitalbitbox = {
|
|
enable = true;
|
|
package = cfg.package;
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
doc = ./default.xml;
|
|
maintainers = with lib.maintainers; [ vidbina ];
|
|
};
|
|
}
|