nix/module/common/bash/module/Calc.nix

9 lines
100 B
Nix

{ ... }: {
text = ''
# Launch calculator app.
function calc() {
gnome-calculator
}
'';
}