diff options
| author | triethyl <triethylammonium@pm.me> | 2025-08-26 18:35:00 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-08-26 18:35:00 -0400 |
| commit | feede85ca98128a8b1f0c91b369d51dd7c854d8c (patch) | |
| tree | 0484b0a01105d21f221c94ab47c3571145891e2a | |
| parent | 71abdc77bf4647211ec002e05993f0d064f44930 (diff) | |
aesthetics: fix gtk target
| -rw-r--r-- | modules/user/aesthetics/targets/gtk.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/user/aesthetics/targets/gtk.nix b/modules/user/aesthetics/targets/gtk.nix index 54377af..795365d 100644 --- a/modules/user/aesthetics/targets/gtk.nix +++ b/modules/user/aesthetics/targets/gtk.nix @@ -29,7 +29,7 @@ @define-color view_fg_color #${base05}; @define-color headerbar_bg_color #${base01}; @define-color headerbar_fg_color #${base05}; - @define-color headerbar_border_color #${base01} + @define-color headerbar_border_color #${base01}; @define-color headerbar_backdrop_color @window_bg_color; @define-color headerbar_shade_color rgba(0, 0, 0, 0.07); @define-color headerbar_darker_shade_color rgba(0, 0, 0, 0.07); @@ -100,7 +100,7 @@ in { options.aesthetics.targets.gtk.enable = lib.mkOption { type = lib.types.bool; - default = (aes.enableAllTargets && aes.hasGui); + default = aes.enableAllTargets && aes.hasGui; description = "Whether to enable the aesthetics GTK target."; }; config = lib.mkIf cfg.enable { |
