Files
nixos/pkgs/hms/default.nix
T
Greg Hellings 2443429454 Fix Jeremiah and hms
Add Jeremiah to the users page
Remove unnecessary home-manager configuration
Convert hms into a shell application
2025-06-11 01:24:15 -05:00

8 lines
207 B
Nix

{ writeShellApplication, coreutils-full, nix-output-monitor, ... }:
writeShellApplication {
name = "hms";
runtimeInputs = [ coreutils-full nix-output-monitor ];
text = (builtins.readFile ./hms.sh);
}