mirror of
https://github.com/danth/stylix
synced 2024-11-28 15:10:41 +00:00
10 lines
263 B
Nix
10 lines
263 B
Nix
{ 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;
|
|
};
|
|
}
|