punkfairie
15372b7726
There was little point to doing this anyway as project-wide find & replace is trivial.
22 lines
378 B
Nix
22 lines
378 B
Nix
{
|
|
lib,
|
|
config,
|
|
namespace,
|
|
...
|
|
}:
|
|
let
|
|
inherit (lib) mkIf;
|
|
inherit (lib.marleyos) mkEnableModule;
|
|
|
|
cfg = config.marleyos.programs.journalctl;
|
|
in
|
|
{
|
|
options = mkEnableModule "programs.journalctl";
|
|
|
|
config = mkIf cfg.enable {
|
|
home.shellAbbrs = {
|
|
jctlf = "sudo journalctl --follow --unit";
|
|
jctle = "sudo journalctl --pager-end --unit";
|
|
};
|
|
};
|
|
}
|