rose-pine-nix/modules/home-manager/default.nix

23 lines
619 B
Nix
Raw Normal View History

2023-03-27 15:49:50 -07:00
{ config, pkgs, lib, ... }: {
2023-03-27 16:07:34 -07:00
imports = [
./bat.nix
2023-04-14 19:54:32 -07:00
./bottom.nix
2023-03-27 17:32:26 -07:00
./starship.nix
./helix.nix
./gtk.nix
2023-04-14 20:00:14 -07:00
./polybar.nix
2023-03-27 16:07:34 -07:00
];
2023-03-27 15:49:50 -07:00
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";
};
2023-03-27 15:49:50 -07:00
};
}