Sunset the build machine configuration and move it to the newer format. Setup the Forgejo Runner.
This commit is contained in:
parent
b66ab168d6
commit
c7d4fc7e47
8 changed files with 413 additions and 45 deletions
75
flake.nix
75
flake.nix
|
|
@ -5,46 +5,53 @@
|
|||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, ... }:
|
||||
let
|
||||
system = "x86_64-linux";
|
||||
in
|
||||
{
|
||||
nixosConfigurations = {
|
||||
"nixos-local-wireguard-server" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/wireguard_server.nix ];
|
||||
};
|
||||
outputs = {
|
||||
self,
|
||||
nixpkgs,
|
||||
...
|
||||
}: let
|
||||
system = "x86_64-linux";
|
||||
in {
|
||||
nixosConfigurations = {
|
||||
"nixos-local-wireguard-server" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/wireguard_server.nix];
|
||||
};
|
||||
|
||||
"nixos-blank" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/blank_system_USE_THIS_AS_COPY.nix ];
|
||||
};
|
||||
"nixos-blank" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/blank_system_USE_THIS_AS_COPY.nix];
|
||||
};
|
||||
|
||||
"nixos-songsheet" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/compose-songsheet.nix ];
|
||||
};
|
||||
"nixos-songsheet" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/compose-songsheet.nix];
|
||||
};
|
||||
|
||||
"nixos-database" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/database.nix ];
|
||||
};
|
||||
"nixos-database" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/database.nix];
|
||||
};
|
||||
|
||||
"nixos-forgejo" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/forgejo.nix ];
|
||||
};
|
||||
"nixos-forgejo" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/forgejo.nix];
|
||||
};
|
||||
|
||||
"nixos-teamspeak" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/teamspeak.nix ];
|
||||
};
|
||||
"nixos-teamspeak" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/teamspeak.nix];
|
||||
};
|
||||
|
||||
"nixos-traefik" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [ ./nix-system-configs/modules/system/traefik.nix ];
|
||||
};
|
||||
"nixos-traefik" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/traefik.nix];
|
||||
};
|
||||
|
||||
"nixos-build-machine" = nixpkgs.lib.nixosSystem {
|
||||
inherit system;
|
||||
modules = [./nix-system-configs/modules/system/build_machine.nix];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue