punkfairie
7d98dd2edd
Allows setting home.shellAbbrs that either get set as Fish shell abbreviations or converted to shell aliases depending on if Fish is active. Abbrs that depend on Fish-specific features get automatically filtered out.
19 lines
317 B
Nix
19 lines
317 B
Nix
{ ... }:
|
|
{
|
|
home.shellAbbrs = {
|
|
jf = {
|
|
position = "command";
|
|
expansion = "sudo journalctl --follow --unit";
|
|
};
|
|
je = {
|
|
position = "command";
|
|
expansion = "sudo journalctl --pager-end --unit";
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./clipboard.nix
|
|
./dunst.nix
|
|
./syncthing.nix
|
|
];
|
|
}
|