marleyos/modules/home/programs/systemctl/default.nix

28 lines
560 B
Nix
Raw Normal View History

2024-11-15 22:18:13 -08:00
{
lib,
config,
namespace,
...
}:
let
inherit (lib) mkIf;
inherit (lib.marleyos) mkEnableModule;
2024-11-15 22:18:13 -08:00
cfg = config.marleyos.programs.systemctl;
2024-11-15 22:18:13 -08:00
in
{
2024-11-16 23:05:17 -08:00
options.marleyos = mkEnableModule "programs.systemctl";
2024-11-15 22:18:13 -08:00
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";
};
};
}