From a45c4551712c1ba5cb82eaf290f311ab0e8690e4 Mon Sep 17 00:00:00 2001 From: Collin Williams <96917990+bluedragon1221@users.noreply.github.com> Date: Mon, 9 Jun 2025 17:40:46 +0000 Subject: big changes --- modules/options.nix | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 modules/options.nix (limited to 'modules/options.nix') 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"]; + }; + }; +} -- cgit v1.3.1