This commit is contained in:
Lilith 2025-03-28 04:06:00 +01:00
parent d6313c6cb1
commit f3721e14bb
Signed by: lilith
GPG key ID: 8712A0F317C37175
7 changed files with 143 additions and 74 deletions

View file

@ -54,6 +54,11 @@
url = "github:LunaCOLON3/zen-browser-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
nur = {
url = "github:nix-community/NUR";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
@ -61,6 +66,8 @@
self,
nixpkgs,
home-manager,
nur,
zen-browser,
...
}@inputs:
let
@ -81,7 +88,13 @@
let
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) (import ./unfree.nix).allowed;
in
import nixpkgs { inherit system config; };
import nixpkgs {
inherit system config;
overlays = [
nur.overlays.default
zen-browser.overlay
];
};
makeHost =
host: system: