infrastructure/flake.nix

126 lines
3.8 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 16:42:46 +02:00
# TODO: consolidate with mkColmenaHost
# Create a nixosConfiguration based on a foldername (nixname) and if the host is an LXC container or a VM.
2021-11-21 16:32:30 +01:00
mkConfig = { hostname, profile ? hostname, lxc ? true, ... }: {
"${profile}" = lib.nixosSystem {
2021-11-16 21:52:43 +01:00
inherit system;
2021-12-02 16:34:48 +01:00
modules = [
./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 ]);
2021-11-21 19:30:19 +01:00
specialArgs = { inherit hosts inputs; };
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 16:42:46 +02:00
# Import all nixos host definitions that are actual nix machines
nixHosts = filter ({ nix ? true, ... }: nix) hosts;
mkColmenaHost = { ip, hostname, profile ? hostname, lxc ? true, ... }: {
2021-11-21 16:32:30 +01:00
"${hostname}" = {
2022-07-30 16:42:46 +02:00
imports = [
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 ]);
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-05-08 02:13:44 +02:00
pkgs = serokell-nix.lib.pkgsWith nixpkgs.legacyPackages.${system} [ vault-secrets.overlay ];
2021-11-23 17:44:00 +01:00
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 {
system = "x86_64-linux";
overlays = [
(import ./nixos/pkgs)
vault-secrets.overlay
minecraft-servers.overlays.default
];
};
2022-07-30 13:12:10 +02:00
specialArgs = {
inherit hosts;
};
};
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";
program = "${pkgs.vault-push-approles self}/bin/vault-push-approles";
};
vault-push-approle-envs = {
type = "app";
program =
"${pkgs.vault-push-approle-envs self}/bin/vault-push-approle-envs";
};
};
2021-11-16 21:52:43 +01:00
# Use by running `nix develop`
2022-04-04 13:46:01 +02:00
devShells.${system}.default = pkgs.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 $?";
buildInputs = with pkgs; [
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
}