diff options
author | sefidel <contact@sefidel.net> | 2024-01-15 13:21:14 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2024-01-15 13:21:14 +0900 |
commit | 2a9cccc98bd1a8b0019b858aa4f9c21c7efb8b0b (patch) | |
tree | f01a046eaea71bce6021bd9c9b8c36930696a771 /lib/mk_system.nix | |
parent | 65700539ea4bb6866fdd08b69eca29a19d19a3fc (diff) | |
download | nixrc-2a9cccc98bd1a8b0019b858aa4f9c21c7efb8b0b.tar.gz nixrc-2a9cccc98bd1a8b0019b858aa4f9c21c7efb8b0b.zip |
project!: disambiguate nix,nixpkgs options
Diffstat (limited to 'lib/mk_system.nix')
-rw-r--r-- | lib/mk_system.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/mk_system.nix b/lib/mk_system.nix index a1a4eab..54dddbe 100644 --- a/lib/mk_system.nix +++ b/lib/mk_system.nix @@ -21,8 +21,10 @@ nixpkgs.lib.nixosSystem ( } entryPoint hardware + # TODO: import all modules (use mapModules?) ../modules/flakes.nix ../modules/nix.nix + ../modules/nixpkgs.nix ] ++ nixpkgs.lib.optional (overlays != null) { nixpkgs.overlays = overlays; } ++ nixpkgs.lib.optionals (extraModules != null) extraModules; } |