this repo has no description
0
fork

Configure Feed

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

:truck: moving gtk config to its own file

+13 -11
+1 -11
home/default.nix
··· 10 10 ./alacritty 11 11 ./emacs 12 12 ./git 13 + ./gtk 13 14 ./firefox 14 15 ./neovim 15 16 ./vscode ··· 126 127 }; 127 128 128 129 xdg.enable = true; 129 - 130 - gtk = { 131 - enable = true; 132 - 133 - font = { 134 - name = "Fira Code Regular"; 135 - size = 11; 136 - }; 137 - 138 - cursorTheme.name = "Bibata-Modern-Classic"; 139 - }; 140 130 }
+12
home/gtk/default.nix
··· 1 + { 2 + gtk = { 3 + enable = true; 4 + 5 + font = { 6 + name = "Fira Code Regular"; 7 + size = 11; 8 + }; 9 + 10 + cursorTheme.name = "Bibata-Modern-Classic"; 11 + }; 12 + }