Merge pull request #211922 from jtojnar/init-script

nixos/init-script: fix eval
This commit is contained in:
Bobby Rong 2023-01-21 22:01:07 +08:00 committed by GitHub
commit 09bc048be5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@ let
src = ./init-script-builder.sh;
isExecutable = true;
inherit (pkgs) bash;
inherit (config.nixos.system) distroName;
inherit (config.system.nixos) distroName;
path = [pkgs.coreutils pkgs.gnused pkgs.gnugrep];
};