25 lines
538 B
Nix
25 lines
538 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkEnableOption mkIf;
|
|
|
|
cfg = config.marleyos.programs.systemctl;
|
|
in
|
|
{
|
|
options.marleyos.programs.systemctl.enable = mkEnableOption "systemctl";
|
|
|
|
config = mkIf cfg.enable {
|
|
home.shellAbbrs = {
|
|
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";
|
|
};
|
|
};
|
|
}
|