Allow nonfree packages (to keep being able to install nomad).
This commit is contained in:
@@ -20,7 +20,10 @@
|
||||
mkNixos = system: modules: nixpkgs.lib.nixosSystem {
|
||||
system = system;
|
||||
modules = [
|
||||
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
|
||||
({ config, pkgs, ... }: {
|
||||
nixpkgs.overlays = [ overlay-unstable ];
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
})
|
||||
] ++ modules;
|
||||
specialArgs = { inherit inputs self; };
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user