diff --git a/home/services/default.nix b/home/services/default.nix index 3331b8f..121c527 100644 --- a/home/services/default.nix +++ b/home/services/default.nix @@ -1,14 +1,16 @@ { ... }: { home.shellAbbrs = { - jf = { - position = "command"; - expansion = "sudo journalctl --follow --unit"; - }; - je = { - position = "command"; - expansion = "sudo journalctl --pager-end --unit"; - }; + jctlf = "sudo journalctl --follow --unit"; + jctle = "sudo journalctl --pager-end --unit"; + + sctl = "sudo systemctl"; + sctls = "sudo systemctl status"; + sctle = "sudo systemctl enable --now"; + sctld = "sudo systemctl disable --now"; + sctlr = "sudo systemctl restart"; + sctla = "sudo systemctl start"; + sctlo = "sudo systemctl stop"; }; imports = [