my nixos config
0
fork

Configure Feed

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

post-update fixups

chfour a00d4ed9 2ede8521

+12 -20
+1 -14
users/chfour/env-gnome.nix
··· 149 149 enable = true; 150 150 151 151 # gtk3 theme 152 - theme = { 153 - name = "adw-gtk3-dark"; 154 - package = pkgs.stdenv.mkDerivation rec { 155 - pname = "adw-gtk3"; 156 - version = src.version; 157 - src = pkgs.adw-gtk3; 158 - installPhase = '' 159 - mkdir -p $out 160 - cp -r * $out/ 161 - # ensure only the gtk3 theme is there (the gtk4 one seems to be breaking things) 162 - rm -rf $out/share/themes/*/gtk-4.0 163 - ''; 164 - }; 165 - }; 152 + theme = { name = "adw-gtk3"; package = pkgs.adw-gtk3; }; 166 153 167 154 # buggy? 168 155 #cursorTheme = {
+11 -6
users/chfour/home.nix
··· 33 33 34 34 programs.git = { 35 35 enable = true; 36 - 37 - signing.signByDefault = true; 38 - signing.key = "BD2EC4C0608DED53"; 36 + signing = { 37 + signByDefault = true; 38 + key = "BD2EC4C0608DED53"; 39 + format = "openpgp"; # need to switch to ssh keys ugh 40 + }; 39 41 40 42 settings = { 41 43 user.name = "chfour"; ··· 95 97 }; 96 98 }; 97 99 98 - xdg.userDirs.enable = isGui; 100 + xdg.userDirs = { 101 + enable = isGui; 102 + setSessionVariables = true; 103 + }; 99 104 100 105 services.mpd = { 101 106 enable = isGui; ··· 128 133 # yea 129 134 patches = (old.patches or []) ++ [ ./signal-desktop-show-window.patch ]; 130 135 })) 131 - helvum 136 + crosspipe 132 137 inkscape gimp3 libresprite 133 138 # libresprite bc aseprite builds weird and its almost the same thing anyways 134 139 blender ··· 173 178 }; 174 179 175 180 programs.home-manager.enable = true; 176 - home.stateVersion = "23.05"; 181 + home.stateVersion = "26.05"; 177 182 }