summaryrefslogtreecommitdiff
path: root/users/kassouni/theme.nix
diff options
context:
space:
mode:
authorAlexander Kassouni <alex@kassouni.net>2026-07-14 22:45:47 -0700
committerAlexander Kassouni <alex@kassouni.net>2026-07-14 22:45:47 -0700
commit23ba623e405d0aa8d554274aacd019d7a015aa9d (patch)
treefec751fc63de4ec026d04144c30ce95d8dba80ad /users/kassouni/theme.nix
X11 is so back
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;
+ };
+ };
+ };
+ };
+}