Skip to content

Commit

Permalink
chore(modules)!: use flavor and accent defaults from org (#145)
Browse files Browse the repository at this point in the history
* chore(modules): update flavor and accent defaults

* chore(modules/nixos): update default flavor
  • Loading branch information
uncenter authored Apr 29, 2024
1 parent 6e94e75 commit 3d3db41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions modules/home-manager/globals.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

flavour = lib.mkOption {
type = lib.ctp.types.flavourOption;
default = "latte";
default = "mocha";
description = "Global Catppuccin flavour";
};

accent = lib.mkOption {
type = lib.ctp.types.accentOption;
default = "teal";
default = "mauve";
description = "Global Catppuccin accent";
};
};
Expand Down
2 changes: 1 addition & 1 deletion modules/nixos/globals.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

flavour = lib.mkOption {
type = lib.ctp.types.flavourOption;
default = "latte";
default = "mocha";
description = "Global Catppuccin flavour";
};
};
Expand Down

0 comments on commit 3d3db41

Please sign in to comment.