nixos-wiki-infra/flake.nix

50 lines
1.6 KiB
Nix
Raw Normal View History

2023-05-10 21:05:10 +02:00
{
description = "Dependencies to deploy a nixos-wiki";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
2023-05-10 21:05:10 +02:00
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";
2023-05-14 18:18:49 +02:00
2023-05-14 20:41:19 +02:00
disko.url = "github:nix-community/disko";
disko.inputs.nixpkgs.follows = "nixpkgs";
2023-05-14 18:18:49 +02:00
srvos.url = "github:numtide/srvos";
srvos.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.url = "github:Mic92/sops-nix";
sops-nix.inputs.nixpkgs.follows = "nixpkgs";
sops-nix.inputs.nixpkgs-stable.follows = "";
2023-05-10 21:05:10 +02:00
};
outputs = inputs@{ flake-parts, ... }:
flake-parts.lib.mkFlake { inherit inputs; } ({ self, lib, ... }: {
systems = [
"aarch64-linux"
"x86_64-linux"
"x86_64-darwin"
"aarch64-darwin"
];
2023-05-10 21:05:10 +02:00
imports = [
inputs.treefmt-nix.flakeModule
2023-05-14 18:43:08 +02:00
./targets/flake-module.nix
./modules/flake-module.nix
2023-11-19 09:23:50 +01:00
./checks/flake-module.nix
2024-07-06 11:13:17 +02:00
./formatter.nix
2023-05-10 21:05:10 +02:00
];
2024-07-06 11:13:17 +02:00
perSystem = { self', system, pkgs, ... }: {
checks =
let
nixosMachines = lib.mapAttrs' (name: config: lib.nameValuePair "nixos-${name}" config.config.system.build.toplevel) ((lib.filterAttrs (_: config: config.pkgs.system == system)) self.nixosConfigurations);
packages = lib.mapAttrs' (n: lib.nameValuePair "package-${n}") self'.packages;
devShells = lib.mapAttrs' (n: lib.nameValuePair "devShell-${n}") self'.devShells;
in
nixosMachines // packages // devShells;
2023-05-10 21:05:10 +02:00
};
});
}