Enhancement: Allow unfree in nixpkgs for fighter.

This commit is contained in:
Joey Hafner 2025-02-07 14:00:25 -08:00
parent 366039d273
commit 179ea1b30b
Signed by: Jafner
GPG Key ID: 6D9A24EF2F389E55
2 changed files with 1 additions and 2 deletions

View File

@ -263,7 +263,7 @@
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import inputs.nixpkgs { pkgs = import inputs.nixpkgs {
inherit system; inherit system;
config = { allowUnfreePredicate = (_: true); }; config = { allowUnfreePredicate = (_: true); allowUnfree = true; };
}; };
in nixpkgs.lib.nixosSystem { in nixpkgs.lib.nixosSystem {
modules = [ modules = [

View File

@ -11,7 +11,6 @@
../../modules/sops.nix ../../modules/sops.nix
]; ];
nixpkgs.config.allowUnfree = true;
programs.nix-ld.enable = true; programs.nix-ld.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];