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

14 lines
294 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-03-27 17:32:26 -07:00
./starship.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";
};
};
}