Fix formatting

This commit is contained in:
Greg Hellings
2025-07-28 22:13:03 -05:00
parent d52109f7f7
commit a042a3a0e0
4 changed files with 25 additions and 15 deletions
+10 -2
View File
@@ -1,7 +1,15 @@
{ writeShellApplication, coreutils-full, nix-output-monitor, ... }:
{
writeShellApplication,
coreutils-full,
nix-output-monitor,
...
}:
writeShellApplication {
name = "hms";
runtimeInputs = [ coreutils-full nix-output-monitor ];
runtimeInputs = [
coreutils-full
nix-output-monitor
];
text = (builtins.readFile ./hms.sh);
}