mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-11-23 20:43:04 +01:00
machines: fix warning about stdenv.hostPlatform.system
Some checks failed
/ Build Nix targets (push) Has been cancelled
Some checks failed
/ Build Nix targets (push) Has been cancelled
This commit is contained in:
parent
e60d5690d5
commit
e23a2921f0
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ let
|
||||||
nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem;
|
nixosSystem = nixpkgs.lib.makeOverridable nixpkgs.lib.nixosSystem;
|
||||||
overlay-unstable = final: _prev: {
|
overlay-unstable = final: _prev: {
|
||||||
unstable = import nixpkgs-unstable {
|
unstable = import nixpkgs-unstable {
|
||||||
inherit (final) system;
|
inherit (final.stdenv.hostPlatform) system;
|
||||||
config.allowUnfree = true;
|
config.allowUnfree = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue