Compare commits

..

4 Commits

Author SHA1 Message Date
8af65b5293 use k3s instead 2026-02-26 20:21:05 -05:00
eeb57bd576 enable all terminfo 2026-02-24 08:08:31 -05:00
8e187a3ea6 implement k8s 2026-02-23 22:47:40 -05:00
c85c68cf3a add attic cache 2026-02-23 22:14:04 -05:00
3 changed files with 24 additions and 0 deletions

View File

@@ -6,6 +6,7 @@
programs.nix-ld.enable = true;
security.sudo.wheelNeedsPassword = false;
system.stateVersion = "25.11";
environment.enableAllTerminfo = true;
nix = {
settings = {

View File

@@ -1,6 +1,18 @@
{
description = "Black Start essential infrastructure for cloud operations";
nixConfig = {
substituters = [
"https://nix-cache.dubyatp.xyz/duby"
"https://cache.nixos.org/"
];
trusted-public-keys = [
"duby:IUVsFbQu499JOaHmUpi/mwhZEVQK7soFn7H6lD2/2T4="
"cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY="
];
};
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
@@ -27,6 +39,7 @@
./security/security.nix
./disko/uefi-nosecure.nix
./users/users.nix
./kubernetes/kubernetes.nix
{
config.boot = {
loader = {
@@ -72,5 +85,7 @@
};
};
};
packages.x86_64-linux.attic = nixpkgs.legacyPackages.x86_64-linux.attic-client;
};
}

View File

@@ -0,0 +1,8 @@
{
networking.firewall.allowedTCPPorts = [6443];
services.k3s = {
enable = true;
role = "server";
};
}