home: add back fish to fix variables

This commit is contained in:
Artemis Tosini 2024-05-20 17:59:18 +00:00
parent 9073f2be74
commit 6c6ea5f157
Signed by: artemist
SSH key fingerprint: SHA256:EsuWCwx6fjxxExxf65rX+ocQJJAdw4R1KarpFue6Uwc
2 changed files with 14 additions and 0 deletions

View file

@ -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
View file

@ -0,0 +1,13 @@
{ pkgs, ... }:
{
programs.fish = {
enable = true;
shellAliases = {
nix-fish = "nix-shell --command fish";
};
};
home.packages = with pkgs; [
bat
eza
];
}