1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 10:07:44 +00:00
ncc/modules/linux/systemd.nix
2025-02-23 21:05:40 +03:00

21 lines
605 B
Nix

{
environment.shellAliases = {
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";
jcf = "journalctl --follow --unit";
jcr = "journalctl --reverse --unit";
juc = "journalctl --user";
jucf = "journalctl --user --follow --unit";
jucr = "journalctl --user --reverse --unit";
};
}