d9a1dde5a5
Drop k8s-server from flake, Makefile targets, modules (kubernetes.nix, docker-registry.nix), install script and hardware config. Remove related registry vhost, port 6443 and NAT rules from gateway.nix. Drop K8s-Server section and dangling markdown wrapper from README. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
29 lines
582 B
Nix
29 lines
582 B
Nix
{
|
|
description = "Home infra for lindenfelser.de (fileserver + gateway)";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
|
};
|
|
|
|
outputs = { self, nixpkgs, ... }:
|
|
let
|
|
system = "x86_64-linux";
|
|
lib = nixpkgs.lib;
|
|
in {
|
|
nixosConfigurations = {
|
|
fileserver = lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
./hosts/fileserver/configuration.nix
|
|
];
|
|
};
|
|
|
|
gateway = lib.nixosSystem {
|
|
inherit system;
|
|
modules = [
|
|
./hosts/gateway/configuration.nix
|
|
];
|
|
};
|
|
};
|
|
};
|
|
} |