diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-04-15 11:45:01 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-15 11:45:01 -0700 |
| commit | 3d7fc9a4edf1ca323dcda3378eb6810028623f4c (patch) | |
| tree | 905dc359035a5bdf0cf706a1d710cacecc80eb12 /homes/x86_64-linux | |
| parent | 7fe05c11b13a1fac41de0cdb6907f7afc3b20f47 (diff) | |
home: improved theme system
Diffstat (limited to 'homes/x86_64-linux')
| -rw-r--r-- | homes/x86_64-linux/c/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/homes/x86_64-linux/c/default.nix b/homes/x86_64-linux/c/default.nix index 069e549..2115737 100644 --- a/homes/x86_64-linux/c/default.nix +++ b/homes/x86_64-linux/c/default.nix @@ -1,8 +1,13 @@ { config, lib, namespace, ... }: -with lib; with lib.${namespace}; { +with lib; with lib.${namespace}; let + themes = config.${namespace}.desktop.themes; +in { cxl = { - desktop.background = "shinobu.png"; + desktop = { + background = "shinobu.png"; + theme = themes."gruvbox"; + }; suites = { common.enable = true; |