Commit 294c4ec9 authored by Robert Gerus's avatar Robert Gerus Committed by Austin Seipp
Browse files

nixos/glasgow: init hardware module

parent c05123ba
Loading
Loading
Loading
Loading
+23 −0
Original line number Diff line number Diff line
{ config, lib, pkgs, ... }:

let
  cfg = config.hardware.glasgow;

in
{
  options.hardware.glasgow = {
    enable = lib.mkOption {
      type = lib.types.bool;
      default = false;
      description = lib.mdDoc ''
        Enables Glasgow udev rules and ensures 'plugdev' group exists.
        This is a prerequisite to using Glasgow without being root.
      '';
    };
  };

  config = lib.mkIf cfg.enable {
    services.udev.packages = [ pkgs.glasgow ];
    users.groups.plugdev = { };
  };
}
+1 −0
Original line number Diff line number Diff line
@@ -61,6 +61,7 @@
  ./hardware/flipperzero.nix
  ./hardware/flirc.nix
  ./hardware/gkraken.nix
  ./hardware/glasgow.nix
  ./hardware/gpgsmartcards.nix
  ./hardware/hackrf.nix
  ./hardware/i2c.nix