zen browser config added

This commit is contained in:
Semere Meharena Mebrahtom 2026-07-19 18:26:33 +02:00
parent 43d20d03f5
commit 0a4fb0c4d3
Signed by: semere
GPG key ID: 7FC937214DF30488
6 changed files with 140 additions and 5 deletions

View file

@ -10,6 +10,11 @@
url = "github:nix-community/home-manager/release-26.05";
inputs.nixpkgs.follows = "nixpkgs";
};
zen-browser = {
url = "github:0xc000022070/zen-browser-flake";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@ -17,6 +22,7 @@
self,
nixpkgs,
home-manager,
zen-browser,
...
}:
let
@ -35,7 +41,7 @@
in
lib.nixosSystem {
system = hostConfig.system;
specialArgs = { inherit userVars self; };
specialArgs = { inherit userVars self zen-browser; };
modules = [
hostConfig.configModule
]
@ -45,8 +51,11 @@
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
extraSpecialArgs = { inherit userVars self; };
extraSpecialArgs = { inherit userVars self zen-browser; };
backupFileExtension = "backup";
sharedModules = [
zen-browser.homeModules.default
];
};
}
];