aboutsummaryrefslogtreecommitdiff
path: root/flake/hosts.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-11-02 14:25:06 -0800
committerFranck Cuny <franck@fcuny.net>2025-11-02 14:36:51 -0800
commit61e417a027a9d0fd00966850a86868645008cad8 (patch)
tree29ca7266a500aaffc99a045b331c729eb443e08a /flake/hosts.nix
parentflake.lock: Update (diff)
downloadinfra-61e417a027a9d0fd00966850a86868645008cad8.tar.gz
remove colmena
Diffstat (limited to '')
-rw-r--r--flake/hosts.nix73
1 files changed, 0 insertions, 73 deletions
diff --git a/flake/hosts.nix b/flake/hosts.nix
index e736d96..df19f45 100644
--- a/flake/hosts.nix
+++ b/flake/hosts.nix
@@ -175,82 +175,9 @@ let
);
}
) (mapHosts (mapSystems "${self}/machines/nixos"));
-
- adminUser = {
- name = "fcuny";
- uid = 1000;
- userinfo = {
- email = "franck@fcuny.net";
- fullName = "Franck Cuny";
- };
- };
in
{
flake = {
inherit nixosConfigurations darwinConfigurations;
- colmenaHive = inputs.colmena.lib.makeHive self.outputs.colmena;
- colmena = {
- meta = {
- nixpkgs = import inputs.nixpkgs {
- system = "x86_64-linux";
- overlays = [
- inputs.agenix.overlays.default
- inputs.my-go-tools.overlays.default
- ];
- };
-
- specialArgs = {
- inherit inputs self;
- adminUser = adminUser;
- };
- };
-
- defaults =
- {
- ...
- }:
- {
- imports = defaultModules ++ [
- inputs.my-go-tools.nixosModules.default
- ];
- };
-
- do-rproxy =
- { name, ... }:
- {
- imports = [ ../machines/nixos/x86_64-linux/${name} ];
- deployment = {
- tags = [ "droplet" ];
- targetHost = "fcuny.net";
- targetUser = "fcuny";
- buildOnTarget = true;
- allowLocalDeployment = false;
- };
- };
- synology-vm =
- { name, ... }:
- {
- imports = [ ../machines/nixos/x86_64-linux/${name} ];
- deployment = {
- tags = [ "vm" ];
- targetHost = "vm-synology";
- targetUser = "fcuny";
- buildOnTarget = true;
- allowLocalDeployment = false;
- };
- };
- rivendell =
- { name, ... }:
- {
- imports = [ ../machines/nixos/x86_64-linux/${name} ];
- deployment = {
- tags = [ "bm" ];
- targetHost = "rivendell";
- targetUser = "fcuny";
- buildOnTarget = true;
- allowLocalDeployment = false;
- };
- };
- };
};
}