Personal-use NixOS configuration
0
fork

Configure Feed

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

at main 20 lines 359 B view raw
1{ homeDesktop }: 2 3{ lib, ... }: 4 5{ 6 imports = [ 7 (homeDesktop + /firefox.nix) 8 ]; 9 10 programs.firefox = { 11 profiles.default = { 12 settings = { 13 "browser.startup.page" = lib.mkForce 1; 14 "browser.startup.homepage" = "https://app.gusto.com|https://app.intercom.com"; 15 }; 16 17 extensions.packages = lib.mkForce [ ]; 18 }; 19 }; 20}