Add Jeremiah to the users page Remove unnecessary home-manager configuration Convert hms into a shell application
8 lines
207 B
Nix
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);
|
|
}
|