summaryrefslogtreecommitdiff
path: root/users/kassouni/theme.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/kassouni/theme.nix')
-rw-r--r--users/kassouni/theme.nix27
1 files changed, 27 insertions, 0 deletions
diff --git a/users/kassouni/theme.nix b/users/kassouni/theme.nix
new file mode 100644
index 0000000..9d049e7
--- /dev/null
+++ b/users/kassouni/theme.nix
@@ -0,0 +1,27 @@
+{ config, lib, pkgs, ... }:
+
+{
+ options = {
+ theme = {
+ font = {
+ size = lib.mkOption {
+ type = lib.types.float;
+ default = 12.0;
+ description = "Global font size for all applications";
+ };
+
+ family = lib.mkOption {
+ type = lib.types.str;
+ default = "BlexMono Nerd Font";
+ };
+ };
+
+ desktop = {
+ gap-size = lib.mkOption {
+ default = 10;
+ type = lib.types.int;
+ };
+ };
+ };
+ };
+}