14 lines
271 B
Nix
14 lines
271 B
Nix
{ pkgs, ... }:
|
|
let
|
|
shellAliases = import ./aliases.nix;
|
|
common = import ./common.nix;
|
|
in {
|
|
home-manager.users.adrielus.programs.fish = {
|
|
inherit shellAliases;
|
|
shellInit = common.shellInit;
|
|
plugins = with pkgs; [ z agnoster ];
|
|
|
|
enable = true;
|
|
};
|
|
}
|