From ebb456c7cc9df5b7121d67f2e8b15c2ca56cf963 Mon Sep 17 00:00:00 2001 From: Eli Ribble Date: Fri, 11 Jul 2025 22:33:20 +0000 Subject: [PATCH] Add the fish shell Which we need because of our tmux config. --- nixos-anywhere/modules/system/default.nix | 1 + nixos-anywhere/modules/system/fish.nix | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 nixos-anywhere/modules/system/fish.nix diff --git a/nixos-anywhere/modules/system/default.nix b/nixos-anywhere/modules/system/default.nix index bf53d71..2f5bbcf 100644 --- a/nixos-anywhere/modules/system/default.nix +++ b/nixos-anywhere/modules/system/default.nix @@ -1,5 +1,6 @@ { imports = [ + ./fish.nix ./tmux.nix ]; } diff --git a/nixos-anywhere/modules/system/fish.nix b/nixos-anywhere/modules/system/fish.nix new file mode 100644 index 0000000..e7d7bed --- /dev/null +++ b/nixos-anywhere/modules/system/fish.nix @@ -0,0 +1,7 @@ +{ config, configPath, lib, pkgs, ... }: + +with lib; + +{ + environment.systemPackages = [ pkgs.fish ]; +}