2024-11-15 22:18:13 -08:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
let
|
2024-11-16 23:29:38 -08:00
|
|
|
inherit (lib) mkEnableOption mkIf;
|
2024-11-15 22:18:13 -08:00
|
|
|
|
2024-11-16 22:34:40 -08:00
|
|
|
cfg = config.marleyos.programs.journalctl;
|
2024-11-15 22:18:13 -08:00
|
|
|
in
|
|
|
|
{
|
2024-11-16 23:29:38 -08:00
|
|
|
options.marleyos.programs.journalctl.enable = mkEnableOption "journalctl";
|
2024-11-15 22:18:13 -08:00
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
home.shellAbbrs = {
|
|
|
|
jctlf = "sudo journalctl --follow --unit";
|
|
|
|
jctle = "sudo journalctl --pager-end --unit";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|