Fix Jeremiah and hms

Add Jeremiah to the users page
Remove unnecessary home-manager configuration
Convert hms into a shell application
This commit is contained in:
Greg Hellings
2025-06-11 01:24:15 -05:00
parent d61e159706
commit 2443429454
3 changed files with 7 additions and 14 deletions
+6 -2
View File
@@ -1,3 +1,7 @@
{ writeShellScriptBin, ... }:
{ writeShellApplication, coreutils-full, nix-output-monitor, ... }:
writeShellScriptBin "hms" (builtins.readFile ./hms.sh)
writeShellApplication {
name = "hms";
runtimeInputs = [ coreutils-full nix-output-monitor ];
text = (builtins.readFile ./hms.sh);
}