15 lines
179 B
Nix
15 lines
179 B
Nix
{ ... }:
|
|
{
|
|
text = ''
|
|
# Suspend system.
|
|
function slp() {
|
|
systemctl suspend -i
|
|
}
|
|
|
|
# Poweroff.
|
|
function bye() {
|
|
systemctl poweroff -i
|
|
}
|
|
'';
|
|
}
|