1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00
flake/programs/fish.nix
2023-07-20 09:42:08 +08:00

11 lines
188 B
Nix

{...}: {
programs.fish = {
enable = true;
shellAbbrs = import ./aliases.nix;
};
home.file.".config/fish/conf.d" = {
source = ./fish/conf.d;
recursive = true;
};
}