1
1
mirror of https://github.com/divnix/digga.git synced 2024-12-23 08:02:21 +03:00

shell: get nixosSystem from pkgs.input

fixes devshell since lib no longer includes nixosSystem
This commit is contained in:
Pacman99 2021-05-14 10:08:24 -07:00 committed by Parthiv Seetharaman
parent 8c7da5e5fe
commit e4424d7d67

View File

@ -21,7 +21,7 @@ let
flk = pkgs'.callPackage ./flk.nix { };
installPkgs = (lib.nixosSystem {
installPkgs = (pkgs.input.lib.nixosSystem {
inherit (pkgs') system;
modules = [ ];
}).config.system.build;