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

21 lines
366 B
Nix
Raw Normal View History

2024-11-15 22:18:13 -08:00
{
lib,
config,
...
}:
let
inherit (lib) mkEnableOption mkIf;
2024-11-15 22:18:13 -08:00
cfg = config.marleyos.programs.journalctl;
2024-11-15 22:18:13 -08:00
in
{
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";
};
};
}