Add the fish shell

Which we need because of our tmux config.
This commit is contained in:
Eli Ribble 2025-07-11 22:33:20 +00:00
parent 2fc0223e06
commit ebb456c7cc
2 changed files with 8 additions and 0 deletions

View file

@ -1,5 +1,6 @@
{
imports = [
./fish.nix
./tmux.nix
];
}

View file

@ -0,0 +1,7 @@
{ config, configPath, lib, pkgs, ... }:
with lib;
{
environment.systemPackages = [ pkgs.fish ];
}