diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/profiles/gui/default.nix | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/home/profiles/gui/default.nix b/home/profiles/gui/default.nix index cba6747..966f2ba 100644 --- a/home/profiles/gui/default.nix +++ b/home/profiles/gui/default.nix @@ -66,8 +66,8 @@ in }; gtk = { - theme.dark = "Orchis-Dark-Compact"; - theme.light = "Orchis-Light-Compact"; + theme.dark = "Adwaita-dark"; + theme.light = "Adwaita"; iconTheme.dark = "Papirus-Dark"; iconTheme.light = "Papirus-Light"; }; @@ -76,17 +76,7 @@ in gtk.enable = true; gtk.iconTheme.package = pkgs.papirus-icon-theme; gtk.iconTheme.name = neotheme.gtk.iconTheme.dark; - gtk.theme.package = (pkgs.orchis-theme.override { tweaks = [ "primary" "compact" ]; }).overrideAttrs(old: { - version = "unstable-2024-07-27"; - - # TODO: version >2024-05-30 - src = pkgs.fetchFromGitHub { - repo = "Orchis-theme"; - owner = "vinceliuice"; - rev = "ac16750c3fb3499d01eb21b04c4347e3059809e1"; - hash = "sha256-tGuw5x85qtuAmUalbYywtOELC1yheaOnfZlCHYCWsIQ="; - }; - }); + gtk.theme.package = pkgs.gnome-themes-extra; gtk.theme.name = neotheme.gtk.theme.dark; gtk.font.name = "${cfg.font.name} ${toString cfg.font.size}"; |