fix nixpkgs.allowUnfree
the previous config had no effect, but nobody noticed since it was not necessary in the first place.
This commit is contained in:
parent
8186160c1b
commit
2971d1bbc0
2 changed files with 1 additions and 3 deletions
|
@ -46,6 +46,7 @@
|
|||
pkgs = import ./pkgs {
|
||||
sources = inputs;
|
||||
system = "x86_64-linux";
|
||||
config.allowUnfree = true;
|
||||
};
|
||||
evalConfig = config: (nixpkgs.lib.nixosSystem {
|
||||
system = "x86_64-linux";
|
||||
|
@ -54,7 +55,6 @@
|
|||
nix-hexchen.nixosModules.network.nftables
|
||||
{
|
||||
nixpkgs.pkgs = pkgs.lib.mkForce pkgs;
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
imports = [ profiles.container profiles.nopersist ];
|
||||
}
|
||||
];
|
||||
|
|
|
@ -19,8 +19,6 @@
|
|||
|
||||
hexchen.bindmounts."/var/lib/gitea" = "/persist/gitea";
|
||||
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
|
||||
services.gitea = {
|
||||
enable = true;
|
||||
appName = "0x0: git for all creatures";
|
||||
|
|
Loading…
Reference in a new issue