stylix/modules/fish/nixos.nix

11 lines
263 B
Nix
Raw Normal View History

2024-12-24 16:04:27 +01:00
{ config, lib, ... }:
{
options.stylix.targets.fish.enable =
config.lib.stylix.mkEnableTarget "Fish" true;
config = lib.mkIf (config.stylix.enable && config.stylix.targets.fish.enable) {
programs.fish.promptInit = import ./prompt.nix config;
};
}