clan-core/flake.nix

38 lines
1.2 KiB
Nix
Raw Normal View History

{
description = "clan.lol base operating system";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-07-28 14:37:10 +00:00
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
nixos-generators.url = "github:nix-community/nixos-generators";
nixos-generators.inputs.nixpkgs.follows = "nixpkgs";
flake-parts.url = "github:hercules-ci/flake-parts";
flake-parts.inputs.nixpkgs-lib.follows = "nixpkgs";
treefmt-nix.url = "github:numtide/treefmt-nix";
treefmt-nix.inputs.nixpkgs.follows = "nixpkgs";
pre-commit-hooks-nix.url = "github:cachix/pre-commit-hooks.nix";
};
outputs = inputs @ { flake-parts, ... }:
2023-07-21 12:01:56 +00:00
flake-parts.lib.mkFlake { inherit inputs; } ({ ... }: {
systems = [
"x86_64-linux"
"aarch64-linux"
];
2023-07-12 16:25:25 +00:00
imports = [
2023-07-28 12:57:23 +00:00
./flake-parts/devShells
./flake-parts/formatting.nix
2023-07-28 13:03:06 +00:00
./flake-parts/merge-after-ci
2023-07-26 16:23:08 +00:00
./flake-parts/modules.nix
2023-08-02 09:50:43 +00:00
./flake-parts/installer.nix
2023-07-28 12:11:19 +00:00
./flake-parts/tea-create-pr
2023-07-26 15:24:43 +00:00
./flake-parts/writers
./templates/flake-module.nix
./templates/python-project/flake-module.nix
2023-07-20 23:08:35 +00:00
./pkgs/clan-cli/flake-module.nix
./lib/flake-module.nix
2023-07-12 16:25:25 +00:00
];
});
}