all repos — nixfiles @ e096da8828f6ab6b5dc8e978c587cc4b54f55a64

System and user configuration, managed by nix and home-manager

system/settings/programs/shell.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
{
  config,
  pkgs,
  ...
}:
{
  programs.fish = {
    enable = true;
    useBabelfish = true;
  };
  users.users.alin.shell = pkgs.fish;
}