mirror of
https://github.com/ItsDrike/nixdots
synced 2025-05-06 10:28:37 +00:00
10 lines
160 B
Nix
10 lines
160 B
Nix
{pkgs, ...}:
|
|
(pkgs.writeShellApplication {
|
|
name = "unix";
|
|
runtimeInputs = with pkgs; [coreutils];
|
|
text = ''
|
|
${builtins.readFile ./unix.sh}
|
|
'';
|
|
})
|
|
|
|
|