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 {
|
mkNixos = system: modules: nixpkgs.lib.nixosSystem {
|
||||||
system = system;
|
system = system;
|
||||||
modules = [
|
modules = [
|
||||||
({ config, pkgs, ... }: { nixpkgs.overlays = [ overlay-unstable ]; })
|
({ config, pkgs, ... }: {
|
||||||
|
nixpkgs.overlays = [ overlay-unstable ];
|
||||||
|
nixpkgs.config.allowUnfree = true;
|
||||||
|
})
|
||||||
] ++ modules;
|
] ++ modules;
|
||||||
specialArgs = { inherit inputs self; };
|
specialArgs = { inherit inputs self; };
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user