All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

leah: update configs

+24 -8
+17 -5
users/leah/presets/niri/default.nix
··· 45 45 enable = true; 46 46 47 47 settings.main = { 48 - font = "Sans:size=8"; 48 + font = "Sans:size=14"; 49 49 use-bold = true; 50 - dpi-aware = "yes"; 51 50 show-actions = true; 52 - lines = 10; 51 + match-counter = true; 52 + 53 + # Make Fuzzel take on-demand focus and stop it 54 + # from closing automatically 53 55 keyboard-focus = "on-demand"; 54 - horizontal-pad = 32; 55 - vertical-pad = 24; 56 + exit-on-keyboard-focus-loss = false; 57 + 58 + lines = 8; 59 + y-margin = 8; 60 + horizontal-pad = 20; 61 + vertical-pad = 16; 62 + inner-pad = 8; 56 63 anchor = "bottom"; 57 64 layer = "top"; 65 + }; 66 + 67 + settings.border = { 68 + radius = 8; 69 + width = 2; 58 70 }; 59 71 }; 60 72 }
+6 -2
users/leah/presets/niri/gui-toolkits.nix
··· 13 13 14 14 qt.enable = true; 15 15 16 - # TODO: Use the corresponding `qt.*` options when they become available 17 - environment.sessionVariables = { 16 + hjem.users.leah.environment.sessionVariables = { 18 17 # Make Qt apps look like GTK 3 apps. 19 18 # Ideally I want to make them look like GTK 4 + Adwaita apps instead, 20 19 # but it's not really viable with `adwaita-qt` being discontinued ··· 22 21 23 22 # At least we can have an Adwaita-style CSD 24 23 QT_WAYLAND_DECORATION = "adwaita"; 24 + 25 + # GTK 3 apps are ignoring the dconf settings for some reason, 26 + # which is causing Qt apps to also misbehave 27 + GTK_THEME = "Adwaita:dark"; 25 28 }; 26 29 27 30 programs.dconf.profiles.user.databases = [ ··· 33 36 }; 34 37 "org/gnome/desktop/interface" = { 35 38 accent-color = "pink"; 39 + gtk-theme = "Adwaita"; 36 40 color-scheme = "prefer-dark"; 37 41 font-name = "Manrope 13"; 38 42 };
+1 -1
users/leah/programs/ghostty.nix
··· 22 22 23 23 unfocused-split-opacity = 0.8; 24 24 background-opacity = 0.85; 25 - background-blur-radius = true; 25 + background-blur = true; 26 26 27 27 # Massively improves the nvim experience 28 28 mouse-hide-while-typing = true;