diff options
author | tv <tv@krebsco.de> | 2015-11-10 12:44:30 +0100 |
---|---|---|
committer | tv <tv@krebsco.de> | 2015-11-10 12:44:51 +0100 |
commit | ebba531273715c1a9c124007b97f3547d16e780f (patch) | |
tree | 8d17ae7e90f4cdeaa022f6f99dbe0527525698c1 /tv | |
parent | 7ce26169db88cf68ab802a68ed55a3ed7b9be33a (diff) |
tv: add shell aliases for systemd
Diffstat (limited to 'tv')
-rw-r--r-- | tv/2configs/default.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tv/2configs/default.nix b/tv/2configs/default.nix index 749d249af..3400c13b6 100644 --- a/tv/2configs/default.nix +++ b/tv/2configs/default.nix @@ -88,6 +88,12 @@ with lib; ls = "ls -h --color=auto --group-directories-first"; dmesg = "dmesg -L --reltime"; view = "vim -R"; + + reload = "systemctl reload"; + restart = "systemctl restart"; + start = "systemctl start"; + status = "systemctl status"; + stop = "systemctl stop"; }; environment.variables = { |