1
0
Fork 0

pluh 🗣

This commit is contained in:
Lukas Wurzinger 2025-03-09 17:33:53 +01:00
parent 5a904c8507
commit 012b945e73
No known key found for this signature in database
4 changed files with 1 additions and 1 deletions

19
packages/disk/package.nix Normal file
View file

@ -0,0 +1,19 @@
{
writeShellApplication,
util-linux,
jq,
e2fsprogs,
dosfstools,
}:
writeShellApplication {
name = "disk";
runtimeInputs = [
util-linux
jq
e2fsprogs
dosfstools
];
text = builtins.readFile ./disk.bash;
}