35 lines
1007 B
Nix
35 lines
1007 B
Nix
{
|
|
outputs = inputs: inputs.flake-parts.lib.mkFlake { inherit inputs; } (inputs.import-tree ./modules);
|
|
|
|
inputs = {
|
|
den.url = "github:vic/den";
|
|
flake-aspects.url = "github:vic/flake-aspects";
|
|
flake-file.url = "github:vic/flake-file";
|
|
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";
|
|
nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
|
|
nixpkgs-lib.follows = "nixpkgs";
|
|
systems.url = "github:nix-systems/default";
|
|
|
|
stylix = {
|
|
url = "github:nix-community/stylix";
|
|
inputs.nixpkgs.follows = "nixpkgs";
|
|
};
|
|
|
|
nix-flatpak.url = "github:gmodena/nix-flatpak/?ref=latest";
|
|
|
|
copyparty.url = "github:9001/copyparty";
|
|
|
|
catppuccin.url = "github:catppuccin/nix";
|
|
|
|
nixcord.url = "github:FlameFlag/nixcord";
|
|
};
|
|
}
|