nixos-config/configurations/profile/home/shell/fish.nix

13 lines
320 B
Nix
Raw Normal View History

{ config, pkgs, lib, materusArg, ... }:
2024-03-11 16:19:31 +01:00
let
cfg = config.materus.profile.fish;
2023-10-08 11:42:08 +02:00
in
{
options.materus.profile.fish.enable = materusArg.pkgs.lib.mkBoolOpt config.materus.profile.enableTerminalExtra "Enable materus fish config";
2023-10-08 11:42:08 +02:00
config = lib.mkIf cfg.enable {
programs.fish = {
2024-04-01 22:10:17 +02:00
enable = true;
2023-10-08 11:42:08 +02:00
};
};
2024-03-11 16:19:31 +01:00
}