mirror of
https://github.com/danth/stylix
synced 2024-11-10 14:44:16 +00:00
10 lines
271 B
Nix
10 lines
271 B
Nix
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
options.stylix.targets.fish.enable =
|
|
config.lib.stylix.mkEnableTarget "Fish" true;
|
|
|
|
config = lib.mkIf config.stylix.targets.fish.enable {
|
|
programs.fish.interactiveShellInit = import ./prompt.nix { inherit pkgs config; };
|
|
};
|
|
}
|