nix/home/program/bash/module/Calc.nix

9 lines
100 B
Nix
Raw Normal View History

2024-04-16 23:23:37 +03:00
{ ... }: {
text = ''
# Launch calculator app.
function calc() {
gnome-calculator
}
'';
}