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

13 lines
230 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 {
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
2020-05-13 11:34:15 +02:00
shellInit = common.shellInit;
enable = true;
};
}