My NixOS and Home Manager configurations
10
fork

Configure Feed

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

remove unneeded zen desktop entry

quasigod 92a313e2 0b191d1e

-34
-34
modules/apps/zen.nix
··· 4 4 imports = [ inputs.zen-browser.homeModules.default ]; 5 5 programs.zen-browser.enable = true; 6 6 home.sessionVariables.BROWSER = "zen"; 7 - xdg.desktopEntries.zen-beta = { # TODO needed? 8 - name = "Zen Browser (Beta)"; 9 - icon = "zen-beta"; 10 - genericName = "Web Browser"; 11 - categories = [ 12 - "Network" 13 - "WebBrowser" 14 - ]; 15 - mimeType = [ 16 - "text/html" 17 - "text/xml" 18 - "application/xhtml+xml" 19 - "x-scheme-handler/http" 20 - "x-scheme-handler/https" 21 - "application/x-xpinstall" 22 - "application/pdf" 23 - "application/json" 24 - ]; 25 - exec = "zen-beta %u"; 26 - actions = { 27 - new-window = { 28 - name = "New Window"; 29 - exec = "zen-beta --new-window %U"; 30 - }; 31 - new-private-window = { 32 - name = "New Private Window"; 33 - exec = "zen-beta --private-window %U"; 34 - }; 35 - profile-manager-window = { 36 - name = "Profile Manager"; 37 - exec = "zen-beta --ProfileManager"; 38 - }; 39 - }; 40 - }; 41 7 }; 42 8 }