From 53193bb7294cf5f5c8f4e0a2fdc2196c8ccb101f Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 25 Dec 2025 18:15:01 +0100 Subject: [PATCH] nixos/glasgow: add glasgow to systemPackages That's what various other tools in hardware.* do, it's surpising if `hardware.glasgow.enable` does not actually give you the `glasgow` binary in `$PATH`. --- nixos/modules/hardware/glasgow.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/nixos/modules/hardware/glasgow.nix b/nixos/modules/hardware/glasgow.nix index 9f67937c5f86..8e478e5437d9 100644 --- a/nixos/modules/hardware/glasgow.nix +++ b/nixos/modules/hardware/glasgow.nix @@ -22,6 +22,7 @@ in }; config = lib.mkIf cfg.enable { + environment.systemPackages = [ pkgs.glasgow ]; services.udev.packages = [ pkgs.glasgow ]; users.groups.plugdev = { }; };