forgejo-ci-runners/flake.nix

139 lines
4 KiB
Nix
Raw Normal View History

2024-05-14 12:03:36 -05:00
{
description = "Forgejo CI Runners";
inputs = {
# NixOS nixpkgs 24.11
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
2024-09-07 13:51:01 -05:00
2024-08-07 19:26:51 -05:00
# Lix - Substitution of the Nix package manager, focused on correctness, usability, and growth and committed to doing right by its community.
# https://git.lix.systems/lix-project/lix
lix-module = {
url = "https://git.lix.systems/lix-project/nixos-module/archive/2.91.1-2.tar.gz";
2024-08-07 19:26:51 -05:00
inputs.nixpkgs.follows = "nixpkgs";
};
2024-09-07 13:51:01 -05:00
# srvos - NixOS modules for Hetzner Cloud and other services
2024-05-14 12:03:36 -05:00
srvos.url = "github:numtide/srvos";
2024-09-07 13:51:01 -05:00
# disko - NixOS module for managing disks
2024-05-14 12:03:36 -05:00
disko.url = "github:nix-community/disko";
2024-09-07 13:51:01 -05:00
# Cachix helper functions for deploying NixOS systems with flakes.
2024-06-18 23:46:58 -05:00
cachix-deploy-flake.url = "github:cachix/cachix-deploy-flake";
2024-09-07 13:51:01 -05:00
# Cachix - Nix binary cache hosting and continuous integration
2024-06-19 00:48:47 -05:00
cachix-flake = {
url = "github:cachix/cachix";
inputs.nixpkgs.follows = "nixpkgs";
};
2024-09-07 13:51:01 -05:00
# sops-nix - Atomic secret provisioning for NixOS based on sops
2024-05-14 12:03:36 -05:00
# https://github.com/Mic92/sops-nix
sops-nix = {
url = "github:Mic92/sops-nix";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
sops-nix,
nixpkgs,
srvos,
disko,
cachix-flake,
cachix-deploy-flake,
lix-module,
...
}@inputs:
2024-06-19 00:48:47 -05:00
let
2024-09-07 14:50:44 -05:00
inherit (nixpkgs) lib;
2024-06-19 00:48:47 -05:00
common = system: rec {
pkgs = import nixpkgs {
inherit system;
overlays = [
(final: prev: {
cachix = cachix-flake.packages.${system}.default;
})
];
};
cachix-deploy-lib = cachix-deploy-flake.lib pkgs;
};
2024-09-13 18:21:12 -05:00
aarch64-linux-modules = [ ];
2024-09-13 18:21:12 -05:00
x86_64-linux-modules = [
"${inputs.nixpkgs}/nixos/modules/virtualisation/lxd-virtual-machine.nix"
sops-nix.nixosModules.sops
srvos.nixosModules.server
lix-module.nixosModules.default
2024-09-13 18:27:50 -05:00
./profiles/role-lxc-vm.nix
{
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILcLI5qN69BuoLp8p7nTYKoLdsBNmZB31OerZ63Car1g jahanson@telchar"
];
services.openssh.enable = true;
services.openssh.settings.PermitRootLogin = "without-password";
}
];
2024-07-25 11:05:47 -05:00
in
{
2024-06-19 02:28:19 -05:00
# NixOS configurations for manual deployment
nixosConfigurations = {
"x86_64" = lib.nixosSystem {
system = "x86_64-linux";
specialArgs = { inherit inputs; };
modules = x86_64-linux-modules;
};
};
2024-09-07 14:50:44 -05:00
2024-06-19 02:28:19 -05:00
# Cachix deploy for automated deployments
2024-07-25 11:05:47 -05:00
packages.aarch64-linux.default =
let
2024-08-07 19:39:22 -05:00
inherit (common "aarch64-linux") cachix-deploy-lib;
in
cachix-deploy-lib.nixos {
imports = aarch64-linux-modules;
2024-05-14 12:03:36 -05:00
};
2024-06-19 00:48:47 -05:00
packages.x86_64-linux.default =
let
2024-08-07 19:39:22 -05:00
inherit (common "x86_64-linux") cachix-deploy-lib;
2024-06-19 00:48:47 -05:00
in
cachix-deploy-lib.nixos {
imports = x86_64-linux-modules;
2024-06-19 00:48:47 -05:00
};
2024-06-19 09:45:36 -05:00
# Constructs a deploy.json output that can be used to deploy the runners
# https://docs.cachix.org/deploy/reference#deploy-json
2024-07-25 11:05:47 -05:00
deploy-json = {
"x86_64" =
let
inherit (common "x86_64-linux") cachix-deploy-lib;
in
cachix-deploy-lib.spec {
agents = {
"x86_64" =
let
inherit (common "x86_64-linux") cachix-deploy-lib;
in
cachix-deploy-lib.nixos {
imports = x86_64-linux-modules;
2024-07-25 11:05:47 -05:00
};
};
};
};
2024-07-25 11:05:47 -05:00
2024-05-26 19:38:35 -05:00
# Convenience output that aggregates the outputs for home, nixos.
2024-09-07 14:50:44 -05:00
# Also used in ci to build targets generally.
top =
let
nixtop = nixpkgs.lib.genAttrs (builtins.attrNames inputs.self.nixosConfigurations) (
attr: inputs.self.nixosConfigurations.${attr}.config.system.build.toplevel
);
in
nixtop;
};
2024-05-14 12:03:36 -05:00
}