1
Fork 0

feat: made fish the default shell and a few other things

This commit is contained in:
Matei Adriel 2020-04-12 19:57:47 +03:00
parent 737ee75da0
commit a8120c85dc
5 changed files with 29 additions and 8 deletions
modules/applications/shells

View file

@ -0,0 +1 @@
{ ls = "exa -l"; }

View file

@ -1,7 +1 @@
{ ... }: {
imports = [ ./sessionVariables.nix ];
home-manager.users.adrielus.programs = {
zsh.enable = true;
fish.enable = true;
};
}
{ pkgs, ... }: { imports = [ ./sessionVariables.nix ./fish.nix ]; }

View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
let shellAliases = import ./aliases.nix;
in {
home-manager.users.adrielus.programs.fish = {
inherit shellAliases;
enable = true;
# plugins = [{
# name = "agnoster";
# src = pkgs.agnoster;
# }];
};
}