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

14 lines
271 B
Nix
Raw Normal View History

{ pkgs, ... }:
2020-05-13 11:34:15 +02:00
let
shellAliases = import ./aliases.nix;
common = import ./common.nix;
in {
2021-11-29 15:00:11 +01:00
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
shellInit = common.shellInit;
2021-12-02 18:57:32 +01:00
plugins = with pkgs; [ z agnoster ];
2021-11-29 15:00:11 +01:00
enable = true;
};
}