punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
27 lines
551 B
Nix
27 lines
551 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.programs.systemctl;
|
|
in
|
|
{
|
|
options = mkEnableModule "programs.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";
|
|
};
|
|
};
|
|
}
|