flake/flake.nix

44 lines
922 B
Nix
Raw Normal View History

2023-08-29 13:23:48 +02:00
{
description = "example flake idk";
inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
nixpkgs-stable.url = "nixpkgs/nixos-23.11";
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-12-24 08:13:53 +01:00
catppuccin.url = "github:Stonks3141/ctp-nix";
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-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
}