nixdots/home/packages/cli/scripts/packages/unix/default.nix
2024-06-21 15:35:32 +02:00

10 lines
160 B
Nix

{pkgs, ...}:
(pkgs.writeShellApplication {
name = "unix";
runtimeInputs = with pkgs; [coreutils];
text = ''
${builtins.readFile ./unix.sh}
'';
})