Skip to content

Commit

Permalink
feat: add flavour option to nixos module
Browse files Browse the repository at this point in the history
  • Loading branch information
Stonks3141 committed Mar 29, 2023
1 parent fa2b78a commit 13e5ba5
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion nixos/default.nix
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
{ pkgs, lib, ... }: { }
{ lib, ... }: {
options.catppuccin = {
flavour = lib.mkOption {
type = lib.types.enum [ "latte" "frappe" "macchiato" "mocha" ];
default = "latte";
description = "Global Catppuccin flavour";
};
};
}

0 comments on commit 13e5ba5

Please sign in to comment.