mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-06 20:23:39 +00:00
21 lines
281 B
Nix
21 lines
281 B
Nix
{pkgs, config, ...}:
|
|
|
|
###### implementation
|
|
|
|
{
|
|
|
|
services = {
|
|
extraJobs = [{
|
|
name = "ctrl-alt-delete";
|
|
|
|
job = ''
|
|
on ctrlaltdel
|
|
|
|
script
|
|
shutdown -r now 'Ctrl-Alt-Delete pressed'
|
|
end script
|
|
'';
|
|
}];
|
|
};
|
|
}
|