config/pkgs/device-mon/default.nix

8 lines
159 B
Nix
Raw Normal View History

2024-04-16 06:50:47 +02:00
{ writeShellApplication, libnotify }:
writeShellApplication {
name = "device-mon";
runtimeInputs = [ libnotify ];
text = builtins.readFile ./main.sh;
}