infrastructure/flake.nix

138 lines
4.1 KiB
Nix
Raw Normal View History

2021-10-13 16:49:41 +02:00
{
2022-09-13 14:57:48 +02:00
description = "0x76's infrastructure";
2021-10-13 16:49:41 +02:00
# 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-09-20 16:38:57 +02:00
nixpkgs.url = "github:NULLx76/nixpkgs/0x76";
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
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";
2022-08-20 12:55:59 +02:00
2022-08-25 13:33:35 +02:00
home-manager.url = "github:nix-community/home-manager";
home-manager.inputs.nixpkgs.follows = "nixpkgs";
2022-08-24 18:17:29 +02:00
hyprland.url = "github:hyprwm/Hyprland";
2022-10-14 21:09:46 +02:00
hyprpaper.url = "github:hyprwm/hyprpaper";
2022-08-25 13:33:35 +02:00
hyprpaper.inputs.nixpkgs.follows = "nixpkgs";
2022-09-07 14:25:42 +02:00
riff.url = "github:DeterminateSystems/riff";
2022-09-13 14:43:23 +02:00
riff.inputs.nixpkgs.follows = "nixpkgs";
2022-09-10 19:49:04 +02:00
webcord.url = "github:fufexan/webcord-flake";
2022-09-21 18:00:51 +02:00
2022-09-26 13:52:32 +02:00
comma.url = "github:nix-community/comma";
comma.inputs.nixpkgs.follows = "nixpkgs";
2022-09-21 18:00:51 +02:00
mailserver.url = "gitlab:simple-nixos-mailserver/nixos-mailserver";
mailserver.inputs.nixpkgs.follows = "nixpkgs";
2022-10-08 16:34:25 +02:00
nixos-generators = {
url = "github:nix-community/nixos-generators";
inputs.nixpkgs.follows = "nixpkgs";
};
2021-11-16 16:28:55 +01:00
};
2021-10-13 16:49:41 +02:00
2022-10-30 11:43:52 +01:00
outputs = { self, nixpkgs, vault-secrets, minecraft-servers, colmena
, home-manager, hyprpaper, hyprland, nixos-generators, ... }@inputs:
2021-11-16 21:52:43 +01:00
let
inherit (nixpkgs) lib;
2022-09-29 18:56:03 +02:00
inherit (builtins) mapAttrs;
2022-08-21 11:42:17 +02:00
2022-10-08 16:34:25 +02:00
util = import ./nixos/util.nix inputs;
2022-08-21 11:42:17 +02:00
2021-11-16 21:52:43 +01:00
system = "x86_64-linux";
2022-08-21 11:42:17 +02:00
# import and add realm to list of tags
hosts = mapAttrs util.add_realm_to_tags (import ./nixos/hosts);
# flatten hosts to single list
2022-08-21 11:42:17 +02:00
flat_hosts = util.flatten_hosts hosts;
# Filter out all non-nixos hosts
nixHosts = util.filter_nix_hosts flat_hosts;
# Define args each module gets access to (access to hosts is useful for DNS/DHCP)
specialArgs = { inherit hosts flat_hosts inputs; };
2022-10-30 11:43:52 +01:00
pkgs = import nixpkgs {
inherit system;
overlays = [
(import ./nixos/pkgs)
vault-secrets.overlay
minecraft-servers.overlays.default
hyprpaper.overlays.default
hyprland.overlays.default
];
};
2022-08-21 12:01:19 +02:00
# Script to apply local colmena deployments
apply-local = pkgs.writeScriptBin "apply-local" ''
#!${pkgs.stdenv.shell}
2022-10-15 13:44:27 +02:00
"${
colmena.packages.${system}.colmena
}"/bin/colmena apply-local --sudo $@
2022-08-21 12:01:19 +02:00
'';
2022-10-15 13:44:27 +02:00
in {
2022-09-13 14:57:48 +02:00
# Make the nixosConfigurations for compat reasons
2022-10-15 13:44:27 +02:00
nixosConfigurations =
(import (inputs.colmena + "/src/nix/hive/eval.nix") {
rawFlake = self;
colmenaOptions =
import (inputs.colmena + "/src/nix/hive/options.nix");
colmenaModules =
import (inputs.colmena + "/src/nix/hive/modules.nix");
}).nodes;
2022-07-30 16:42:46 +02:00
2022-10-08 12:53:14 +02:00
# Make the colmena configuration
2022-10-15 13:44:27 +02:00
colmena = lib.foldr (el: acc: acc // util.mkColmenaHost el) {
meta = {
inherit specialArgs;
nixpkgs = pkgs;
};
} nixHosts;
2022-06-12 17:06:32 +02:00
2022-09-13 14:57:48 +02:00
packages.${system} = {
2022-10-15 13:44:27 +02:00
inherit apply-local;
2022-10-30 11:43:52 +01:00
2022-09-13 14:57:48 +02:00
default = colmena.packages.${system}.colmena;
2022-10-08 16:34:25 +02:00
iso = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "iso";
2022-10-15 13:44:27 +02:00
modules = [ (import ./nixos/iso.nix) ];
};
proxmox-lxc = nixos-generators.nixosGenerate {
inherit system pkgs;
format = "proxmox-lxc";
2022-11-04 14:25:13 +01:00
modules = [ (import ./nixos/proxmox-lxc.nix) ];
2022-10-08 16:34:25 +02:00
};
2022-09-13 14:57:48 +02:00
};
2022-08-21 12:01:19 +02:00
2021-11-16 21:52:43 +01:00
# Use by running `nix develop`
2022-07-30 18:02:40 +02:00
devShells.${system}.default = pkgs.mkShell {
2021-11-23 17:44:00 +01:00
VAULT_ADDR = "http://vault.olympus:8200/";
2022-08-21 12:01:19 +02:00
buildInputs = with pkgs; [
apply-local
2022-09-13 14:43:23 +02:00
colmena.packages.${system}.colmena
2022-10-02 20:51:08 +02:00
cachix
fluxcd
k9s
kubectl
kubectx
2021-11-21 16:32:30 +01:00
terraform
nixfmt
nixUnstable
vault
2022-10-15 13:44:27 +02:00
(vault-push-approle-envs self { })
(vault-push-approles self { })
2021-11-16 16:28:55 +01:00
];
};
};
2021-10-13 16:49:41 +02:00
}