punkfairie
6a2b253f83
Modules were being placed at <group>.<namespace>.<module> instead of <namespace>.<group>.<module>
22 lines
386 B
Nix
22 lines
386 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.${namespace}) mkEnableModule;
|
|
|
|
cfg = config.${namespace}.programs.journalctl;
|
|
in
|
|
{
|
|
options = mkEnableModule "programs.journalctl";
|
|
|
|
config = mkIf cfg.enable {
|
|
home.shellAbbrs = {
|
|
jctlf = "sudo journalctl --follow --unit";
|
|
jctle = "sudo journalctl --pager-end --unit";
|
|
};
|
|
};
|
|
}
|