2024-11-03 16:33:28 -08:00
|
|
|
{ lib, config, ... }:
|
2024-11-03 10:33:32 -08:00
|
|
|
{
|
2024-11-03 16:33:28 -08:00
|
|
|
# TODO: There's probably some fancy nix attr mapping that can be done to set
|
|
|
|
# these once and convert them to aliases or abbrs depending on shell.
|
|
|
|
programs.fish.shellAbbrs =
|
|
|
|
lib.mkIf (config.programs.fish.enable && config.programs.fish.preferAbbrs)
|
|
|
|
{
|
|
|
|
jf = {
|
|
|
|
position = "command";
|
|
|
|
expansion = "sudo journalctl --follow --unit";
|
|
|
|
};
|
|
|
|
je = {
|
|
|
|
position = "command";
|
|
|
|
expansion = "sudo journalctl --pager-end --unit";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2024-11-03 10:33:32 -08:00
|
|
|
imports = [
|
2024-11-03 11:00:29 -08:00
|
|
|
./clipboard.nix
|
2024-11-03 12:22:58 -08:00
|
|
|
./dunst.nix
|
2024-11-03 10:33:32 -08:00
|
|
|
./syncthing.nix
|
|
|
|
];
|
|
|
|
}
|