1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 01:27:56 +00:00

zen-browser: init

This commit is contained in:
RGBCube 2025-07-31 17:53:16 +03:00
parent d84249b3f2
commit 48fedaa89f
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
6 changed files with 109 additions and 5 deletions

View file

@ -11,6 +11,7 @@ inputs: self: super: let
|> filter (hasAttrByPath path)
|> map (getAttrFromPath path);
inputHomeModules = collectInputs [ "homeModules" "default" ];
inputModulesLinux = collectInputs [ "nixosModules" "default" ];
inputModulesDarwin = collectInputs [ "darwinModules" "default" ];
@ -30,6 +31,10 @@ in {
modules = [
module
overlayModule
{
home-manager.sharedModules = inputHomeModules;
}
] ++ modulesCommon
++ modulesLinux
++ inputModulesLinux;
@ -41,6 +46,10 @@ in {
modules = [
module
overlayModule
{
home-manager.sharedModules = inputHomeModules;
}
] ++ modulesCommon
++ modulesDarwin
++ inputModulesDarwin;