punkfairie
6a2b253f83
Modules were being placed at <group>.<namespace>.<module> instead of <namespace>.<group>.<module>
27 lines
559 B
Nix
27 lines
559 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.${namespace}) mkEnableModule;
|
|
|
|
cfg = config.${namespace}.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";
|
|
};
|
|
};
|
|
}
|