Add zen and librewolf configuration
This commit is contained in:
parent
dc83628ac9
commit
1886700857
10 changed files with 219 additions and 62 deletions
25
modules/programs/browser/foxwrappers.nix
Normal file
25
modules/programs/browser/foxwrappers.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{inputs, ...}: let
|
||||
mkFirefoxModule = import "${inputs.home-manager.outPath}/modules/programs/firefox/mkFirefoxModule.nix";
|
||||
in {
|
||||
imports = [
|
||||
(mkFirefoxModule {
|
||||
modulePath = [
|
||||
"programs"
|
||||
"zen-browser"
|
||||
];
|
||||
name = "Zen Browser";
|
||||
wrappedPackageName = "zen-browser-unwrapped";
|
||||
unwrappedPackageName = "zen-browser";
|
||||
visible = true;
|
||||
platforms = {
|
||||
linux = {
|
||||
vendorPath = ".zen";
|
||||
configPath = ".zen";
|
||||
};
|
||||
darwin = {
|
||||
configPath = "Library/Application Support/Zen";
|
||||
};
|
||||
};
|
||||
})
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue