nix/nixos/common/software/cli/clean-hm.nix

10 lines
176 B
Nix
Raw Normal View History

2024-04-30 01:23:30 +02:00
{ pkgs, ... }:
2024-04-30 01:19:12 +02:00
let
clean-hm = pkgs.writeScriptBin "clean-hm" "${builtins.readFile ./scripts/clean-hm.sh}";
in {
environment.systemPackages = [
clean-hm
];
}