home: add back fish to fix variables
This commit is contained in:
parent
9073f2be74
commit
6c6ea5f157
|
@ -8,6 +8,7 @@
|
|||
home-manager.users.artemis = {
|
||||
imports = [
|
||||
./dirs.nix
|
||||
./fish.nix
|
||||
./git.nix
|
||||
./gpg.nix
|
||||
./gtk.nix
|
||||
|
|
13
home/fish.nix
Normal file
13
home/fish.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
shellAliases = {
|
||||
nix-fish = "nix-shell --command fish";
|
||||
};
|
||||
};
|
||||
home.packages = with pkgs; [
|
||||
bat
|
||||
eza
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue