flake/flake.nix

50 lines
1 KiB
Nix
Raw Normal View History

2023-08-29 13:23:48 +02:00
{
description = "example flake idk";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
2023-11-14 18:59:49 +01:00
nixpkgs-stable.url = "nixpkgs/nixos-23.05";
2023-11-07 15:52:47 +01:00
2023-11-08 14:42:16 +01:00
flake-parts = {
url = "github:hercules-ci/flake-parts";
inputs.nixpkgs-lib.follows = "nixpkgs";
};
2023-11-13 04:22:42 +01:00
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-08 15:18:44 +01:00
lanzaboote = {
url = "github:nix-community/lanzaboote";
2023-11-08 14:42:16 +01:00
inputs = {
nixpkgs.follows = "nixpkgs";
2023-11-08 15:18:44 +01:00
flake-parts.follows = "flake-parts";
2023-11-08 14:42:16 +01:00
};
};
agenix = {
url = "github:uku3lig/agenix";
2023-11-14 19:47:42 +01:00
inputs.nixpkgs.follows = "nixpkgs";
};
2023-11-08 15:18:44 +01:00
getchvim = {
url = "github:getchoo/getchvim";
2023-11-08 14:42:16 +01:00
inputs = {
nixpkgs.follows = "nixpkgs";
2023-11-08 15:18:44 +01:00
parts.follows = "flake-parts";
2023-11-08 14:42:16 +01:00
};
2023-11-07 15:52:47 +01:00
};
2023-08-29 13:23:48 +02:00
};
2023-11-14 18:29:14 +01:00
outputs = {flake-parts, ...} @ inputs:
2023-11-14 00:56:27 +01:00
flake-parts.lib.mkFlake {inherit inputs;} {
systems = ["x86_64-linux"];
2023-11-14 18:29:14 +01:00
imports = [
./dev.nix
./systems
];
2023-11-14 00:56:27 +01:00
};
2023-08-29 13:23:48 +02:00
}