1
Fork 0
satellite/modules/applications/shells/fish.nix
2020-05-13 12:34:15 +03:00

13 lines
230 B
Nix

{ pkgs, ... }:
let
shellAliases = import ./aliases.nix;
common = import ./common.nix;
in {
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
shellInit = common.shellInit;
enable = true;
};
}