1
Fork 0
satellite/modules/applications/shells/fish.nix

14 lines
247 B
Nix

{ pkgs, ... }:
let shellAliases = import ./aliases.nix;
in {
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
enable = true;
# plugins = [{
# name = "agnoster";
# src = pkgs.agnoster;
# }];
};
}