From 8858e1c52b5df4409df0115d7a598c80bcf07de5 Mon Sep 17 00:00:00 2001 From: jz8132543 Date: Wed, 20 Nov 2024 00:48:37 +0800 Subject: [PATCH] fix: derper --- nixos/modules/base/nixpkgs.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 ];