mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
24 lines
487 B
Nix
24 lines
487 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
let
|
||
|
cfg = config.hardware.glasgow;
|
||
|
|
||
|
in
|
||
|
{
|
||
|
options.hardware.glasgow = {
|
||
|
enable = lib.mkOption {
|
||
|
type = lib.types.bool;
|
||
|
default = false;
|
||
|
description = ''
|
||
|
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 = { };
|
||
|
};
|
||
|
}
|