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 ]; +}