rose-pine-nix/modules/home-manager/default.nix
seth 298605b31e
feat(modules): add support for helix (#8)
Co-authored-by: Sam Nystrom <sam@samnystrom.dev>
2023-04-14 22:37:39 -04:00

20 lines
584 B
Nix

{ config, pkgs, lib, ... }: {
imports = [
./bat.nix
./starship.nix
./helix.nix
./gtk.nix
];
options.catppuccin = {
flavour = lib.mkOption {
type = lib.types.enum [ "latte" "frappe" "macchiato" "mocha" ];
default = "latte";
description = "Global Catppuccin flavour";
};
accent = lib.mkOption {
type = lib.types.enum [ "blue" "flamingo" "green" "lavender" "maroon" "mauve" "peach" "pink" "red" "rosewater" "sapphire" "sky" "teal" "yellow" ];
default = "teal";
description = "Global Catppuccin accent";
};
};
}