1
0
Fork 0

devenv + cleanup

This commit is contained in:
Lukas Wurzinger 2024-12-19 18:30:18 +01:00
parent d87895fa19
commit 1487c708c1
No known key found for this signature in database
6 changed files with 259 additions and 125 deletions

19
disk/disk.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;
}