1
Fork 0
satellite/modules/applications/shells/fish.nix
2021-11-29 16:00:11 +02:00

14 lines
283 B
Nix

{ pkgs, ... }:
let
shellAliases = import ./aliases.nix;
common = import ./common.nix;
in {
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
shellInit = common.shellInit;
plugins = [ fishPlugins.z fishThemes.agnoster ];
enable = true;
};
}