diff options
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; |