2023-05-10 21:05:10 +02:00
|
|
|
{
|
|
|
|
description = "Dependencies to deploy a nixos-wiki";
|
|
|
|
|
|
|
|
inputs = {
|
2024-09-28 16:04:56 +02:00
|
|
|
nixpkgs.url = "git+https://github.com/NixOS/nixpkgs?shallow=1&ref=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";
|
2023-10-24 17:33:05 +02:00
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2024-09-28 16:15:00 +02:00
|
|
|
outputs =
|
|
|
|
inputs@{ flake-parts, ... }:
|
|
|
|
flake-parts.lib.mkFlake { inherit inputs; } (
|
|
|
|
{ self, lib, ... }:
|
|
|
|
{
|
|
|
|
systems = [
|
|
|
|
"aarch64-linux"
|
|
|
|
"x86_64-linux"
|
2023-11-19 09:23:13 +01:00
|
|
|
|
2024-09-28 16:15:00 +02:00
|
|
|
"x86_64-darwin"
|
|
|
|
"aarch64-darwin"
|
|
|
|
];
|
|
|
|
imports = [
|
|
|
|
inputs.treefmt-nix.flakeModule
|
|
|
|
./targets/flake-module.nix
|
|
|
|
./modules/flake-module.nix
|
|
|
|
./checks/flake-module.nix
|
|
|
|
./formatter.nix
|
|
|
|
];
|
|
|
|
perSystem =
|
|
|
|
{ self', system, ... }:
|
|
|
|
{
|
2023-11-19 11:18:44 +01:00
|
|
|
|
2024-09-28 16:15:00 +02:00
|
|
|
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
|
|
|
}
|