Add host aluminium

This commit is contained in:
Jakob Lechner 2022-11-15 21:30:28 +00:00
parent 8d2c826cf0
commit 684ff15e5c
No known key found for this signature in database
GPG key ID: 996082EFB5906C10
10 changed files with 299 additions and 2 deletions

View file

@ -30,6 +30,7 @@
./tradebyte
./udmx.nix
./uefi.nix
./unfree.nix
./wireshark.nix
./yubikey-gpg.nix
];

7
modules/unfree.nix Normal file
View file

@ -0,0 +1,7 @@
{ lib, ... }:
{
nixpkgs.config.allowUnfreePredicate = (pkg: lib.elem (lib.getName pkg) [
"unifi-controller"
]);
}