Nix configurations for my personal machines (Linux & macOS)
1
fork

Configure Feed

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

Remove firefox module

ovyerus.com 83a81579 9d2b1143

verified
-17
-1
hosts/shimmer/default.nix
··· 7 7 myconfig.tray.enable = false; 8 8 myconfig.virtualisation.enable = false; 9 9 10 - myconfig.programs.firefox.enable = false; 11 10 myconfig.programs.chromium.enable = false; 12 11 myconfig.programs.desktop-apps.enable = false; 13 12 myconfig.programs.espanso.enable = false;
-16
modules/programs/firefox.nix
··· 1 - { 2 - delib, 3 - pkgs, 4 - inputs, 5 - ... 6 - }: 7 - delib.module { 8 - name = "programs.firefox"; 9 - 10 - options = delib.singleEnableOption true; 11 - 12 - home.ifEnabled.programs.firefox = { 13 - enable = true; 14 - package = inputs.zen-browser.packages.${pkgs.system}.default; 15 - }; 16 - }