flake/flake.nix
uku e297c23772
remove garnix cache
doesn't serve me much at all, and sometimes makes unnecessarily large downloads when rebuilding
2023-12-06 10:31:11 +01:00

49 lines
1 KiB
Nix

{
description = "example flake idk";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/nixos-23.05";
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
lanzaboote = {
url = "github:nix-community/lanzaboote";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-parts.follows = "flake-parts";
};
};
agenix = {
url = "github:uku3lig/agenix";
inputs.nixpkgs.follows = "nixpkgs";
};
getchvim = {
url = "github:getchoo/getchvim";
inputs = {
nixpkgs.follows = "nixpkgs";
parts.follows = "flake-parts";
};
};
};
outputs = {flake-parts, ...} @ inputs:
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
imports = [
./dev.nix
./systems
];
};
}