diff --git a/nixos-modules/system/default.nix b/nixos-modules/system/default.nix index 6742c53..a0a0cff 100644 --- a/nixos-modules/system/default.nix +++ b/nixos-modules/system/default.nix @@ -11,7 +11,6 @@ ./overlays.nix ./physical.nix ./security.nix - ./unfree.nix ./virtual-machine.nix ]; diff --git a/nixos-modules/system/unfree.nix b/nixos-modules/system/unfree.nix deleted file mode 100644 index 7122f94..0000000 --- a/nixos-modules/system/unfree.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ - config, - lib, - ... -}: - -{ - nixpkgs.config.allowUnfreePredicate = - pkg: - builtins.elem (lib.getName pkg) [ - "corefonts" - "camingo-code" - "helvetica-neue-lt-std" - #"kochi-substitute-naga10" - "ttf-envy-code-r" - "vista-fonts" - "vista-fonts-chs" - "xkcd-font-unstable" - "ricty" - ]; -}