diff options
Diffstat (limited to 'modules/home/desktop')
| -rw-r--r-- | modules/home/desktop/default.nix | 2 | ||||
| -rw-r--r-- | modules/home/desktop/theme/gruvbox/default.nix | 3 |
2 files changed, 2 insertions, 3 deletions
diff --git a/modules/home/desktop/default.nix b/modules/home/desktop/default.nix index 6b2ab79..f2204ef 100644 --- a/modules/home/desktop/default.nix +++ b/modules/home/desktop/default.nix @@ -4,7 +4,7 @@ with lib; with lib.${namespace}; let cfg = config.${namespace}.desktop; themeType = with types; submodule { options = { - name = mkOption { + vim = mkOption { type = str; }; diff --git a/modules/home/desktop/theme/gruvbox/default.nix b/modules/home/desktop/theme/gruvbox/default.nix index 7b0aa9d..f93b0dc 100644 --- a/modules/home/desktop/theme/gruvbox/default.nix +++ b/modules/home/desktop/theme/gruvbox/default.nix @@ -2,8 +2,7 @@ with lib; with lib.${namespace}; { cxl.desktop.themes."gruvbox" = { - #TODO: grab this from attr name somehow - name = "gruvbox"; + vim = "gruvbox"; gtk = { package = pkgs.gruvbox-gtk-theme; |