22 lines
506 B
Nix
22 lines
506 B
Nix
{
|
|
description = ''
|
|
A collection of custom NixOS modules and packages I use.
|
|
'';
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
flake-parts.url = "github:hercules-ci/flake-parts";
|
|
import-tree.url = "github:vic/import-tree";
|
|
|
|
zen-browser = {
|
|
url = "github:0xc000022070/zen-browser-flake";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
};
|
|
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake
|
|
{ inherit inputs; }
|
|
(inputs.import-tree ./modules);
|
|
}
|