diff options
author | Karel Kočí <cynerd@email.cz> | 2022-07-02 09:50:24 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2022-07-02 09:50:24 +0200 |
commit | 3e53e2ab495ea95054c9160db8584110cae6c860 (patch) | |
tree | 2e2a588dd5743b8abab95aea13f94d490ed2bb0e /lib | |
parent | a7e2c790b76faadb5f1dcf3745c240eaa24a037a (diff) | |
download | nixturris-3e53e2ab495ea95054c9160db8584110cae6c860.tar.gz nixturris-3e53e2ab495ea95054c9160db8584110cae6c860.tar.bz2 nixturris-3e53e2ab495ea95054c9160db8584110cae6c860.zip |
lib: provide default for nixturrisSystem
Diffstat (limited to 'lib')
-rw-r--r-- | lib/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/default.nix b/lib/default.nix index 3a8e279..211451e 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -1,4 +1,4 @@ -self: rec { +{ self, nixpkgsDefault }: rec { # Mapping of board name to the appropriate system boardSystem = { @@ -15,7 +15,7 @@ self: rec { # NixOS system for specific Turris board nixturrisSystem = { board, - nixpkgs, + nixpkgs ? nixpkgsDefault, system ? boardSystem.${board}.system, modules ? [], override ? {} |