2024-11-15 22:18:13 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
2025-01-13 21:05:10 -08:00
|
|
|
}: let
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.journalctl;
|
2025-01-13 21:05:10 -08:00
|
|
|
in {
|
|
|
|
options.marleyos.programs.journalctl.enable = lib.mkEnableOption "journalctl";
|
2024-11-15 22:18:13 -08:00
|
|
|
|
2025-01-13 21:05:10 -08:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-15 22:18:13 -08:00
|
|
|
home.shellAbbrs = {
|
|
|
|
jctlf = "sudo journalctl --follow --unit";
|
|
|
|
jctle = "sudo journalctl --pager-end --unit";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|