mirror of
https://codeberg.org/leana8959/.files.git
synced 2026-02-01 14:39:39 +00:00
14 lines
193 B
Nix
14 lines
193 B
Nix
{
|
|
writeShellApplication,
|
|
jq,
|
|
mullvad,
|
|
}:
|
|
|
|
writeShellApplication {
|
|
name = "mullvad-status";
|
|
runtimeInputs = [
|
|
mullvad
|
|
jq
|
|
];
|
|
text = builtins.readFile ./mullvad-status.sh;
|
|
}
|