infrastructure/flake.nix

161 lines
4.6 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
2023-01-28 21:06:34 +01: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
2023-01-15 19:31:14 +01:00
# For minecraft use:
# * https://github.com/Infinidoge/nix-minecraft
2021-11-16 16:28:55 +01:00
inputs = {
2023-02-14 10:59:38 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-01-15 19:31:14 +01:00
nixpkgs_22-11.url = "github:nixos/nixpkgs/nixos-22.11";
2022-06-12 12:25:46 +02:00
2022-12-06 21:56:38 +01:00
nur.url = "github:nix-community/NUR";
2022-05-27 11:41:22 +02:00
colmena.url = "github:zhaofengli/colmena";
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
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-09-07 14:25:42 +02:00
2023-01-28 21:06:34 +01:00
riff.url = "github:DeterminateSystems/riff";
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";
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
2022-11-06 22:13:48 +01:00
nixvim.url = "github:pta2002/nixvim";
2023-01-17 13:49:31 +01:00
nixos-generators.url = "github:nix-community/nixos-generators";
2022-11-29 09:48:23 +01:00
nixos-hardware.url = "github:NixOS/nixos-hardware/master";
2021-11-16 16:28:55 +01:00
};
2021-10-13 16:49:41 +02:00
2023-01-24 15:51:32 +01:00
outputs = { self, nixpkgs, nixpkgs_22-11, vault-secrets, colmena, home-manager
, hyprpaper, hyprland, nixos-generators, nixos-hardware, nur, ... }@inputs:
2021-11-16 21:52:43 +01:00
let
inherit (nixpkgs) lib;
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
2022-12-26 15:13:04 +01:00
hosts = 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;
2022-10-30 11:43:52 +01:00
pkgs = import nixpkgs {
inherit system;
overlays = [
(import ./nixos/pkgs)
vault-secrets.overlay
hyprpaper.overlays.default
hyprland.overlays.default
2022-12-06 21:56:38 +01:00
nur.overlay
2022-10-30 11:43:52 +01:00
];
};
2022-08-21 12:01:19 +02:00
2023-01-15 13:34:09 +01:00
pkgs_22-11 = import nixpkgs_22-11 {
inherit system;
config.allowUnfree = true;
};
# Define args each module gets access to (access to hosts is useful for DNS/DHCP)
specialArgs = { inherit hosts flat_hosts inputs pkgs_22-11; };
2022-08-21 12:01:19 +02:00
# Script to apply local colmena deployments
2022-11-06 13:04:41 +01:00
apply-local = pkgs.writeShellScriptBin "apply-local" ''
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-11-06 13:04:41 +01:00
fast-repl = pkgs.writeShellScriptBin "fast-repl" ''
source /etc/set-environment
nix repl --file "${./.}/repl.nix" $@
'';
2023-01-24 15:51:32 +01: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
2023-01-24 15:51:32 +01: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";
# modules = [ (import ./nixos/templates/iso.nix) ];
# };
# iso-graphical = nixos-generators.nixosGenerate {
# inherit system pkgs;
# format = "iso";
# modules = [ (import ./nixos/templates/iso-graphical.nix) ];
# };
2023-02-14 10:59:38 +01:00
proxmox-lxc = nixos-generators.nixosGenerate {
inherit pkgs;
format = "proxmox-lxc";
modules = [ (import ./nixos/templates/proxmox-lxc.nix) ];
};
# proxmox-vm = nixos-generators.nixosGenerate {
# inherit system pkgs;
# format = "proxmox";
# modules = [ (import ./nixos/templates/proxmox-vm.nix) ];
# };
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
2022-12-02 12:18:21 +01:00
statix
2021-11-21 16:32:30 +01:00
terraform
nixfmt
nixUnstable
2023-01-21 12:32:47 +01:00
nil
vault
2022-10-15 13:44:27 +02:00
(vault-push-approle-envs self { })
(vault-push-approles self { })
2022-11-06 13:04:41 +01:00
fast-repl
2021-11-16 16:28:55 +01:00
];
};
};
2021-10-13 16:49:41 +02:00
}