From 21f27fdc88227d774d1b2279510ff9c20a3ef73f Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 10 Jul 2024 10:22:24 +0100 Subject: [PATCH] Set font-sizes back to original values Plasma: use icon theme from GTK config to avoid duplication / conflicts Remove rounded corners in GTK extra CSS Firefox: remove homepage --- flake.nix | 8 ++++---- home/desktop/base16/gtk.nix | 2 +- home/desktop/plasma/default.nix | 2 +- home/work.nix | 5 +---- 4 files changed, 7 insertions(+), 10 deletions(-) diff --git a/flake.nix b/flake.nix index 89760961..166885e2 100644 --- a/flake.nix +++ b/flake.nix @@ -53,10 +53,10 @@ accentColourName = "base0E"; fonts = with iosevkaCustom; rec { sizes = { - applications = 14; - desktop = 12; - popups = 16; - terminal = 14; + applications = 12; + desktop = 10; + popups = 14; + terminal = 12; }; serif = sansSerif; sansSerif = { diff --git a/home/desktop/base16/gtk.nix b/home/desktop/base16/gtk.nix index e8eaee5b..a7b19a04 100644 --- a/home/desktop/base16/gtk.nix +++ b/home/desktop/base16/gtk.nix @@ -4,7 +4,7 @@ }: with scheme.withHashtag; '' // Remove rounded corners - window.background { border-radius: 5; } + window.background { border-radius: 0; } @define-color accent_color ${scheme.withHashtag."${accentColourName}-hex"}; @define-color accent_bg_color ${scheme.withHashtag."${accentColourName}-hex"}; @define-color accent_fg_color ${base00-hex}; diff --git a/home/desktop/plasma/default.nix b/home/desktop/plasma/default.nix index 5149b84f..aa42d12b 100644 --- a/home/desktop/plasma/default.nix +++ b/home/desktop/plasma/default.nix @@ -28,7 +28,7 @@ inherit (config.home.pointerCursor) size; theme = config.home.pointerCursor.name; }; - iconTheme = "Papirus"; + iconTheme = config.gtk.iconTheme.name; wallpaper = "${../wallpapers/landscapes/tropic_island_day.jpg}"; }; diff --git a/home/work.nix b/home/work.nix index ece8dcc1..ee6bd4f3 100644 --- a/home/work.nix +++ b/home/work.nix @@ -8,10 +8,7 @@ twinkle (import ./scripts/ukaea-vpn.nix pkgs) ]; - programs = { - git.userEmail = config.accounts.email.accounts.outlook.address; - firefox.policies.Homepage.URL = "https://nucleus.ukaea.uk"; - }; + programs.git.userEmail = config.accounts.email.accounts.outlook.address; accounts.email.accounts = { proton.primary = lib.mkForce false; outlook.primary = lib.mkForce true;