marleyos/home/services/default.nix

24 lines
611 B
Nix
Raw Normal View History

{ lib, config, ... }:
{
# 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";
};
};
imports = [
./clipboard.nix
2024-11-03 12:22:58 -08:00
./dunst.nix
./syncthing.nix
];
}