clan-core/flake.nix

64 lines
2.1 KiB
Nix
Raw Normal View History

{
description = "clan.lol base operating system";
nixConfig.extra-substituters = [ "https://cache.clan.lol" ];
nixConfig.extra-trusted-public-keys = [ "cache.clan.lol-1:3KztgSAB5R1M+Dz7vzkBGzXdodizbgLXGXKXlcQLA28=" ];
inputs = {
2023-11-08 09:17:00 +00:00
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
2023-11-07 19:53:29 +00:00
disko.url = "github:nix-community/disko";
2023-07-28 14:37:10 +00:00
disko.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.url = "github:Mic92/sops-nix";
2023-11-11 17:28:18 +00:00
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.inputs.nixpkgs-stable.follows = "";
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";
};
outputs = inputs @ { flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } ({ lib, ... }: {
systems = [
"x86_64-linux"
"aarch64-linux"
2023-09-28 13:57:12 +00:00
"aarch64-darwin"
];
2023-07-12 16:25:25 +00:00
imports = [
./checks/flake-module.nix
2023-08-03 15:01:26 +00:00
./devShell.nix
./devShell-python.nix
2023-08-03 15:01:26 +00:00
./formatter.nix
./templates/flake-module.nix
2023-09-18 17:22:45 +00:00
./clanModules/flake-module.nix
2023-08-05 09:42:48 +00:00
./pkgs/flake-module.nix
./lib/flake-module.nix
./nixosModules/flake-module.nix
{
options.flake = flake-parts.lib.mkSubmoduleOptions {
clanInternals = lib.mkOption {
type = lib.types.submodule {
options = {
all-machines-json = lib.mkOption {
type = lib.types.attrsOf lib.types.str;
};
machines = lib.mkOption {
type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified);
};
machinesFunc = lib.mkOption {
type = lib.types.attrsOf (lib.types.attrsOf lib.types.unspecified);
};
};
};
};
};
}
2023-07-12 16:25:25 +00:00
];
});
}