Initial commit

This commit is contained in:
2025-08-20 18:24:02 +03:00
commit 2dec42d487
116 changed files with 6591 additions and 0 deletions

13
modules/n/unfree.nix Normal file
View File

@@ -0,0 +1,13 @@
{ lib, config, ... }:
with lib;
let
cfg = config.n.misc.unfreePackages;
in {
options.n.misc.unfreePackages = mkOption {
type = with types; listOf str;
};
config = {
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) cfg;
};
}