nixos-wiki-infra/flake.nix

71 lines
2.3 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";
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";
# Use the version of nixpkgs that has been tested to work with SrvOS
srvos.inputs.nixpkgs.follows = "nixpkgs";
2023-11-26 18:01:53 +01:00
srvos.inputs.nixos-23_05.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"
"riscv64-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
2023-05-10 21:05:10 +02:00
];
perSystem = { config, self', system, pkgs, ... }: {
2023-05-10 21:05:10 +02:00
treefmt = {
projectRootFile = "flake.nix";
2023-10-24 17:34:54 +02:00
programs.hclfmt.enable = true;
2023-05-10 21:05:10 +02:00
programs.nixpkgs-fmt.enable = true;
};
2023-10-24 17:34:54 +02:00
packages.default =
pkgs.mkShell {
packages = [
pkgs.bashInteractive
pkgs.sops
2023-11-19 11:12:28 +01:00
(pkgs.opentofu.withPlugins (p: [
2023-10-24 17:34:54 +02:00
p.netlify
p.hcloud
p.null
p.external
p.local
]))
];
};
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
};
});
}