zen
This commit is contained in:
parent
d6313c6cb1
commit
f3721e14bb
7 changed files with 143 additions and 74 deletions
15
flake.nix
15
flake.nix
|
|
@ -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:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue