infrastructure/flake.nix

117 lines
3.6 KiB
Nix
Raw Normal View History

2021-10-13 16:49:41 +02:00
{
description = "Delft Deployment";
# Based on:
# * https://github.com/serokell/pegasus-infra/blob/master/flake.nix
# * https://git.voidcorp.nl/j00lz/nixos-configs/src/branch/main/flake.nix
2021-11-16 21:52:43 +01:00
2021-11-16 16:28:55 +01:00
inputs = {
2022-06-03 16:35:55 +02:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2022-06-12 12:25:46 +02:00
2022-05-27 11:41:22 +02:00
colmena.url = "github:zhaofengli/colmena";
colmena.inputs.nixpkgs.follows = "nixpkgs";
2022-06-12 12:25:46 +02:00
2021-11-16 16:28:55 +01:00
serokell-nix.url = "github:serokell/serokell.nix";
2022-05-24 21:06:38 +02:00
serokell-nix.inputs.nixpkgs.follows = "nixpkgs";
2022-06-12 12:25:46 +02:00
2021-11-16 16:28:55 +01:00
vault-secrets.url = "github:serokell/vault-secrets";
2022-05-24 21:06:38 +02:00
vault-secrets.inputs.nixpkgs.follows = "nixpkgs";
2022-05-05 15:16:37 +02:00
minecraft-servers.url = "github:jyooru/nix-minecraft-servers";
2022-05-24 21:06:38 +02:00
minecraft-servers.inputs.nixpkgs.follows = "nixpkgs";
2021-11-16 16:28:55 +01:00
};
2021-10-13 16:49:41 +02:00
2021-11-17 00:55:01 +01:00
outputs =
2022-07-30 16:42:46 +02:00
{ self, nixpkgs, vault-secrets, serokell-nix, minecraft-servers, ... }@inputs:
2021-11-16 21:52:43 +01:00
let
inherit (nixpkgs) lib;
2021-11-21 19:30:19 +01:00
inherit (builtins) filter mapAttrs;
2021-11-16 21:52:43 +01:00
system = "x86_64-linux";
2021-11-21 19:30:19 +01:00
hosts = import ./hosts.nix;
2022-07-30 17:15:58 +02:00
specialArgs = { inherit hosts inputs; };
# Filter all nixos host definitions that are actual nix machines
nixHosts = filter ({ nix ? true, ... }: nix) hosts;
resolveImports = { hostname, profile ? hostname, lxc ? true, ... }: [
vault-secrets.nixosModules.vault-secrets
./nixos/common
"${./.}/nixos/hosts/${profile}/configuration.nix"
] ++ (if lxc then [
"${nixpkgs}/nixos/modules/virtualisation/lxc-container.nix"
./nixos/common/generic-lxc.nix
]
else [ ./nixos/common/generic-vm.nix ]);
# Create a nixosConfiguration based on a foldername (nixname) and if the host is an LXC container or a VM.
2022-07-30 17:15:58 +02:00
mkConfig = { hostname, profile ? hostname, lxc ? true, ... }@host: {
2021-11-21 16:32:30 +01:00
"${profile}" = lib.nixosSystem {
2021-11-16 21:52:43 +01:00
inherit system;
2022-07-30 17:15:58 +02:00
inherit specialArgs;
modules = resolveImports host;
2021-11-16 16:28:55 +01:00
};
2021-10-17 21:02:20 +02:00
};
2021-10-18 18:54:07 +02:00
2022-07-30 17:15:58 +02:00
mkColmenaHost = { ip, hostname, profile ? hostname, lxc ? true, ... }@host: {
2021-11-21 16:32:30 +01:00
"${hostname}" = {
2022-07-30 17:15:58 +02:00
imports = resolveImports host;
2022-07-30 16:42:46 +02:00
deployment = {
targetHost = ip;
targetUser = null; # Defaults to $USER
2021-11-21 16:32:30 +01:00
};
};
2021-11-21 16:32:30 +01:00
};
2021-10-18 23:26:26 +02:00
2022-07-30 17:15:58 +02:00
legacyPackages = serokell-nix.lib.pkgsWith nixpkgs.legacyPackages.${system} [ vault-secrets.overlay ];
2022-05-08 02:13:44 +02:00
in
{
# Make the config and deploy sets
2022-07-30 16:42:46 +02:00
nixosConfigurations = lib.foldr (el: acc: acc // mkConfig el) { } nixHosts;
colmena = lib.foldr (el: acc: acc // mkColmenaHost el)
{
meta = {
nixpkgs = import nixpkgs {
2022-07-30 17:15:58 +02:00
inherit system;
2022-07-30 16:42:46 +02:00
overlays = [
(import ./nixos/pkgs)
vault-secrets.overlay
minecraft-servers.overlays.default
];
};
2022-07-30 17:15:58 +02:00
inherit specialArgs;
2022-07-30 13:12:10 +02:00
};
2022-07-30 16:42:46 +02:00
}
nixHosts;
2022-06-12 17:06:32 +02:00
apps.${system} = rec {
2021-12-02 16:34:48 +01:00
vault-push-approles = {
type = "app";
2022-07-30 17:15:58 +02:00
program = "${legacyPackages.vault-push-approles self}/bin/vault-push-approles";
2021-12-02 16:34:48 +01:00
};
vault-push-approle-envs = {
type = "app";
program =
2022-07-30 17:15:58 +02:00
"${legacyPackages.vault-push-approle-envs self}/bin/vault-push-approle-envs";
2021-12-02 16:34:48 +01:00
};
};
2021-11-16 21:52:43 +01:00
# Use by running `nix develop`
2022-07-30 17:15:58 +02:00
devShells.${system}.default = legacyPackages.mkShell {
2021-11-23 17:44:00 +01:00
VAULT_ADDR = "http://vault.olympus:8200/";
2021-11-21 16:32:30 +01:00
# This only support bash so just execute zsh in bash as a workaround :/
2022-06-12 12:25:46 +02:00
shellHook = "zsh; exit $?";
2022-07-30 17:15:58 +02:00
buildInputs = with legacyPackages; [
2022-07-30 13:12:10 +02:00
colmena
fluxcd
k9s
kubectl
kubectx
2021-11-21 16:32:30 +01:00
terraform
nixfmt
nixUnstable
vault
2021-11-16 16:28:55 +01:00
];
};
};
2021-10-13 16:49:41 +02:00
}