40 lines
1.1 KiB
Nix
40 lines
1.1 KiB
Nix
{
|
|
inputs = {
|
|
flake-parts = {
|
|
inputs.nixpkgs-lib.follows = "nixpkgs-lib";
|
|
url = "github:hercules-ci/flake-parts";
|
|
};
|
|
home-manager = {
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
url = "github:nix-community/home-manager";
|
|
};
|
|
import-tree.url = "github:vic/import-tree";
|
|
nix-darwin = {
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
url = "github:LnL7/nix-darwin/master";
|
|
};
|
|
helium = {
|
|
url = "github:schembriaiden/helium-browser-nix-flake";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
nixpkgs.url = "https://channels.nixos.org/nixpkgs-unstable/nixexprs.tar.xz";
|
|
nixpkgs-lib.follows = "nixpkgs";
|
|
nixvim.url = "github:nix-community/nixvim";
|
|
agenix.url = "github:ryantm/agenix";
|
|
nix-homebrew.url = "github:zhaofengli/nix-homebrew";
|
|
inputs.paneru = {
|
|
url = "github:karinushka/paneru";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
dms = {
|
|
url = "github:AvengeMedia/DankMaterialShell/stable";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
};
|
|
|
|
outputs =
|
|
inputs:
|
|
inputs.flake-parts.lib.mkFlake {
|
|
inherit inputs;
|
|
} (inputs.import-tree ./modules);
|
|
}
|