aboutsummaryrefslogtreecommitdiff
path: root/modules/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/options.nix')
-rw-r--r--modules/options.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/options.nix b/modules/options.nix
new file mode 100644
index 0000000..b890831
--- /dev/null
+++ b/modules/options.nix
@@ -0,0 +1,9 @@
+{lib, ...}: let
+ inherit (lib) mkOption types;
+in {
+ options = {
+ collinux.theme = mkOption {
+ type = types.enum ["catppuccin" "adwaita"];
+ };
+ };
+}