File tree Expand file tree Collapse file tree
Users/WickedWizard/Programs/Browsers Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 ./junction.nix
66 ./librewolf.nix
77 # ./tor.nix
8+ ./zen.nix
89 ] ;
910}
Original file line number Diff line number Diff line change 1+ { config' , lib , ... } :
2+ {
3+ services . flatpak = {
4+ packages = [ "app.zen_browser.zen" ] ;
5+ overrides . "app.zen_browser.zen" =
6+ lib . optionalAttrs ( config' . dir ? browsers && config' . dir . browsers != null )
7+ {
8+ Context . filesystems = "${ config' . dir . browsers } /Zen" ;
9+ } ;
10+ } ;
11+
12+ # Zen, for some reason, requires this file to be writable.
13+ # home.file.".var/app/app.zen_browser.zen/.zen/profiles.ini".text = ''
14+ # [Profile0]
15+ # Name=Default
16+ # IsRelative=0
17+ # Default=1
18+ # ${lib.optionalString (
19+ # config'.dir ? browsers && config'.dir.browsers != null
20+ # ) "Path=${config'.dir.browsers}/Zen/"}
21+ # '';
22+ }
You can’t perform that action at this time.
0 commit comments