my system configurations ^-^
0
fork

Configure Feed

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

feat: thunderbird and gammastep

willow bc95705f 45474e6e

+23
+2
modules/home/configs/default.nix
··· 8 8 ./spicetify.nix 9 9 ./nushell.nix 10 10 ./packages.nix 11 + ./thunderbird.nix 12 + ./gammastep.nix 11 13 ./gui.nix 12 14 ./stylix.nix 13 15 ./git.nix
+10
modules/home/configs/gammastep.nix
··· 1 + {...}: { 2 + services.gammastep = { 3 + enable = true; 4 + tray = true; 5 + provider = "manual"; 6 + latitude = -38.0; 7 + longitude = 145.0; 8 + settings.general.adjustment-method = "wayland"; 9 + }; 10 + }
+11
modules/home/configs/thunderbird.nix
··· 1 + {...}: { 2 + programs.thunderbird = { 3 + enable = true; 4 + profiles."default" = { 5 + isDefault = true; 6 + settings = { 7 + "toolkit.legacyUserProfileCustomizations.stylesheets" = true; 8 + }; 9 + }; 10 + }; 11 + }