diff --git a/nixos/modules/base/nixpkgs.nix b/nixos/modules/base/nixpkgs.nix index d5421be..07ded91 100644 --- a/nixos/modules/base/nixpkgs.nix +++ b/nixos/modules/base/nixpkgs.nix @@ -2,6 +2,7 @@ inputs, getSystem, config, + lib, ... }: let @@ -31,7 +32,7 @@ let "cmd/stunc" "cmd/hello" ]; - postInstall = concatStrings [ + postInstall = lib.strings.concatStrings [ "alias ln=echo\n" old.postInstall ];