From 521551336caa3c41e3bfc4c555e9774f96125f1a Mon Sep 17 00:00:00 2001 From: RGBCube Date: Wed, 29 May 2024 10:46:24 +0300 Subject: [PATCH] Add more systemd aliases --- modules/systemd.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/systemd.nix b/modules/systemd.nix index 760b8a6..55cd392 100644 --- a/modules/systemd.nix +++ b/modules/systemd.nix @@ -5,10 +5,12 @@ systemConfiguration { sc = "systemctl"; scd = "systemctl stop"; scr = "systemctl restart"; + scs = "systemctl status"; scu = "systemctl start"; suc = "systemctl --user"; sucd = "systemctl --user stop"; sucr = "systemctl --user restart"; + sucs = "systemctl --user status"; sucu = "systemctl --user start"; jc = "journalctl";