format with alejandra style
All checks were successful
Lint / lint (push) Successful in 18s
Build Pi NixOS Image / sync (push) Successful in 26m51s

This commit is contained in:
Gabriel Simmer 2024-02-05 13:13:44 +00:00
parent 02a87f0294
commit 9439acf4d1
Signed by: arch
SSH key fingerprint: SHA256:m3OEcdtrnBpMX+2BDGh/byv3hrCekCLzDYMdvGEKPPQ
41 changed files with 1765 additions and 1355 deletions

View file

@ -22,27 +22,42 @@
kubenix.url = "github:hall/kubenix"; kubenix.url = "github:hall/kubenix";
}; };
outputs = { self, nixpkgs, nixos-generators, nixinate, home-manager, agenix, terranix, alertmanager-ntfy, nixpkgs-wayland, kubenix, kde2nix }@inputs: outputs = {
let self,
nixpkgs,
nixos-generators,
nixinate,
home-manager,
agenix,
terranix,
alertmanager-ntfy,
nixpkgs-wayland,
kubenix,
kde2nix,
} @ inputs: let
pkgs = nixpkgs.legacyPackages.x86_64-linux; pkgs = nixpkgs.legacyPackages.x86_64-linux;
tf = terranix.lib.terranixConfiguration { tf = terranix.lib.terranixConfiguration {
system = "x86_64-linux"; system = "x86_64-linux";
modules = [ ./terraform/main.nix ]; modules = [./terraform/main.nix];
}; };
in { in {
devShells.x86_64-linux.default = with pkgs; mkShell { devShells.x86_64-linux.default = with pkgs;
shellHook = mkShell {
'' shellHook = ''
set -o allexport set -o allexport
source .env set source .env set
set +o allexport set +o allexport
''; '';
nativeBuildInputs = [ nativeBuildInputs = [
jq opentofu kubectl jq
k9s terraform-ls kubernetes-helm opentofu
kubectl
k9s
terraform-ls
kubernetes-helm
nil nil
]; ];
buildInputs = [ ]; buildInputs = [];
}; };
packages.aarch64-linux = { packages.aarch64-linux = {
raspberry-pi = nixos-generators.nixosGenerate { raspberry-pi = nixos-generators.nixosGenerate {
@ -55,15 +70,22 @@
}; };
}; };
packages.x86_64-linux = { packages.x86_64-linux = {
kubernetes = (kubenix.evalModules.x86_64-linux { kubernetes =
module = { kubenix, ... }: { (kubenix.evalModules.x86_64-linux {
module = {kubenix, ...}: {
imports = [ imports = [
kubenix.modules.k8s ./homelab/kubernetes.nix kubenix.modules.k8s
./homelab/kubernetes.nix
]; ];
}; };
}).config.kubernetes.result; })
.config
.kubernetes
.result;
}; };
apps = nixinate.nixinate.x86_64-linux self // { apps =
nixinate.nixinate.x86_64-linux self
// {
x86_64-linux = { x86_64-linux = {
kube-apply = { kube-apply = {
type = "app"; type = "app";
@ -100,7 +122,7 @@
homeConfigurations."gsimmer" = home-manager.lib.homeManagerConfiguration { homeConfigurations."gsimmer" = home-manager.lib.homeManagerConfiguration {
inherit pkgs; inherit pkgs;
modules = [ ./nix/london/gsimmer.nix ]; modules = [./nix/london/gsimmer.nix];
}; };
nixosConfigurations = { nixosConfigurations = {
london = nixpkgs.lib.nixosSystem { london = nixpkgs.lib.nixosSystem {
@ -113,8 +135,12 @@
home-manager.useUserPackages = true; home-manager.useUserPackages = true;
home-manager.users.gsimmer = import ./nix/london/gsimmer.nix; home-manager.users.gsimmer = import ./nix/london/gsimmer.nix;
} }
({pkgs, config, ... }: (
{ {
pkgs,
config,
...
}: {
config = { config = {
nix.settings = { nix.settings = {
# add binary caches # add binary caches
@ -131,7 +157,7 @@
}; };
# use it as an overlay # use it as an overlay
nixpkgs.overlays = [ nixpkgs-wayland.overlay ]; nixpkgs.overlays = [nixpkgs-wayland.overlay];
}; };
} }
) )

View file

@ -1,4 +1,9 @@
{ lib, config, kubenix, ... }: { {
lib,
config,
kubenix,
...
}: {
kubernetes.helm.releases.cloudflare-exporter = { kubernetes.helm.releases.cloudflare-exporter = {
namespace = "default"; namespace = "default";
chart = kubenix.lib.helm.fetch { chart = kubenix.lib.helm.fetch {

View file

@ -2,7 +2,7 @@ let
appName = "conduwuit"; appName = "conduwuit";
conduwuit-Image = "git.gmem.ca/arch/conduwuit:latest"; conduwuit-Image = "git.gmem.ca/arch/conduwuit:latest";
in in
{ ... }: { {...}: {
kubernetes.resources.services.conduwuit = { kubernetes.resources.services.conduwuit = {
spec = { spec = {
selector.app = appName; selector.app = appName;
@ -27,9 +27,15 @@ in
imagePullPolicy = "Always"; imagePullPolicy = "Always";
ports.http.containerPort = 6167; ports.http.containerPort = 6167;
volumeMounts = [ volumeMounts = [
{ name = "data"; mountPath = "/var/lib/matrix-conduit"; } {
{ name = "config"; mountPath = "/etc/matrix-conduit/conduit.toml"; name = "data";
subPath = "conduit.toml"; } mountPath = "/var/lib/matrix-conduit";
}
{
name = "config";
mountPath = "/etc/matrix-conduit/conduit.toml";
subPath = "conduit.toml";
}
]; ];
env.CONDUIT_CONFIG.value = "/etc/matrix-conduit/conduit.toml"; env.CONDUIT_CONFIG.value = "/etc/matrix-conduit/conduit.toml";
}; };
@ -37,10 +43,11 @@ in
}; };
}; };
volumeClaimTemplates = [ volumeClaimTemplates = [
{ metadata.name = "data"; {
metadata.name = "data";
spec = { spec = {
storageClassName = "nfs-client"; storageClassName = "nfs-client";
accessModes = [ "ReadWriteOnce" ]; accessModes = ["ReadWriteOnce"];
resources.requests.storage = "5Gi"; resources.requests.storage = "5Gi";
}; };
} }
@ -54,15 +61,23 @@ in
}; };
}; };
spec = { spec = {
tls = [ { hosts = [ "chat.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["chat.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
rules = [ rules = [
{ {
host = "chat.gmem.ca"; host = "chat.gmem.ca";
http.paths = [ http.paths = [
{ path = "/"; pathType = "Prefix"; {
path = "/";
pathType = "Prefix";
backend.service = { backend.service = {
name = appName; name = appName;
port.name = "http"; }; port.name = "http";
};
} }
]; ];
} }
@ -76,8 +91,7 @@ in
"cert-manager.io/issuer" = "le-issuer"; "cert-manager.io/issuer" = "le-issuer";
}; };
}; };
data."conduit.toml" = data."conduit.toml" = ''
''
[global] [global]
# The Conduit server needs all /_matrix/ requests to be reachable at # The Conduit server needs all /_matrix/ requests to be reachable at
# https://your.server.name/ on port 443 (client-server) and 8448 (federation). # https://your.server.name/ on port 443 (client-server) and 8448 (federation).
@ -94,4 +108,4 @@ in
address = "0.0.0.0" address = "0.0.0.0"
''; '';
}; };
} }

View file

@ -1,6 +1,6 @@
{ lib, ... }: { {lib, ...}: {
kubernetes.resourceOrder = kubernetes.resourceOrder = [
[ "CustomResourceDefinition" "CustomResourceDefinition"
"Namespace" "Namespace"
"ConfigMap" "ConfigMap"
]; ];

View file

@ -26,36 +26,65 @@ let
}; };
}; };
in { in {
kubernetes.resources.services = builtins.mapAttrs (name: endpoint: { kubernetes.resources.services =
builtins.mapAttrs (name: endpoint: {
spec = { spec = {
ports.${name} = { ports.${name} = {
port = endpoint.port; port = endpoint.port;
targetPort = endpoint.port; targetPort = endpoint.port;
}; };
}; };
}) endpoints; })
kubernetes.resources.endpoints = builtins.mapAttrs (name: endpoint: { endpoints;
subsets = [ { kubernetes.resources.endpoints =
addresses = [ { ip = endpoint.location; } ]; builtins.mapAttrs (name: endpoint: {
ports = [ { name = name; port = endpoint.port; protocol = "TCP"; } ]; subsets = [
} ]; {
}) endpoints; addresses = [{ip = endpoint.location;}];
kubernetes.resources.ingresses = builtins.mapAttrs (name: endpoint: { ports = [
metadata = { name = name; annotations = { {
name = name;
port = endpoint.port;
protocol = "TCP";
}
];
}
];
})
endpoints;
kubernetes.resources.ingresses =
builtins.mapAttrs (name: endpoint: {
metadata = {
name = name;
annotations = {
"nginx.ingress.kubernetes.io/proxy-body-size" = "10g"; "nginx.ingress.kubernetes.io/proxy-body-size" = "10g";
"cert-manager.io/issuer" = "le-issuer"; "cert-manager.io/issuer" = "le-issuer";
"nginx.ingress.kubernetes.io/backend-protocol" = endpoint.protocol; "nginx.ingress.kubernetes.io/backend-protocol" = endpoint.protocol;
}; }; };
};
spec = { spec = {
tls = [ { hosts = [ endpoint.host ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
rules = [ { host = endpoint.host; http.paths = [ {
{ path = "/"; pathType = "Prefix"; hosts = [endpoint.host];
secretName = "gmem-ca-wildcard";
}
];
rules = [
{
host = endpoint.host;
http.paths = [
{
path = "/";
pathType = "Prefix";
backend.service = { backend.service = {
name = name; name = name;
port.number = endpoint.port; port.number = endpoint.port;
}; };
} }
];}]; ];
}
];
}; };
}) endpoints; })
endpoints;
} }

View file

@ -1,10 +1,16 @@
{ lib, config, kubenix, ... }: {
let homepage-config = { lib,
config,
kubenix,
...
}: let
homepage-config = {
bookmarks = []; bookmarks = [];
services = [ services = [
{ {
Media = [ Media = [
{ Plex = { {
Plex = {
icon = "plex.png"; icon = "plex.png";
href = "https://app.plex.tv"; href = "https://app.plex.tv";
description = "Plex"; description = "Plex";
@ -15,7 +21,8 @@ let homepage-config = {
}; };
}; };
} }
{ Overseerr = { {
Overseerr = {
icon = "overseerr.png"; icon = "overseerr.png";
href = "https://request-media.gmem.ca"; href = "https://request-media.gmem.ca";
description = "Request movies and TV shows"; description = "Request movies and TV shows";
@ -26,7 +33,8 @@ let homepage-config = {
}; };
}; };
} }
{ Transmission = { {
Transmission = {
icon = "transmission.png"; icon = "transmission.png";
description = "Download progress for torrents"; description = "Download progress for torrents";
widget = { widget = {
@ -39,25 +47,29 @@ let homepage-config = {
} }
{ {
"Personal Infrastructure" = [ "Personal Infrastructure" = [
{ authentik = { {
authentik = {
icon = "authentik.png"; icon = "authentik.png";
href = "https://authentik.gmem.ca"; href = "https://authentik.gmem.ca";
description = "OIDC SSO"; description = "OIDC SSO";
}; };
} }
{ Tailscale = { {
Tailscale = {
icon = "tailscale.png"; icon = "tailscale.png";
href = "https://login.tailscale.com"; href = "https://login.tailscale.com";
description = "VPN provider"; description = "VPN provider";
}; };
} }
{ Git = { {
Git = {
icon = "forgejo.png"; icon = "forgejo.png";
href = "https://git.gmem.ca"; href = "https://git.gmem.ca";
description = "Git forge"; description = "Git forge";
}; };
} }
{ Grafana = { {
Grafana = {
icon = "grafana.png"; icon = "grafana.png";
href = "https://grafana.gmem.ca"; href = "https://grafana.gmem.ca";
description = "Monitoring & metrics"; description = "Monitoring & metrics";
@ -69,7 +81,8 @@ let homepage-config = {
}; };
}; };
} }
{ NextDNS = { {
NextDNS = {
icon = "nextdns.png"; icon = "nextdns.png";
href = "https://my.nextdns.io/bcee89/setup"; href = "https://my.nextdns.io/bcee89/setup";
description = "DNS provider"; description = "DNS provider";
@ -80,7 +93,8 @@ let homepage-config = {
}; };
}; };
} }
{ "Proxmox" = { {
"Proxmox" = {
icon = "proxmox.png"; icon = "proxmox.png";
href = "https://proxmox.gmem.ca"; href = "https://proxmox.gmem.ca";
description = "Homelab proxmox"; description = "Homelab proxmox";
@ -92,7 +106,8 @@ let homepage-config = {
}; };
}; };
} }
{ "Immich" = { {
"Immich" = {
icon = "immich.png"; icon = "immich.png";
href = "https://photos.gmem.ca"; href = "https://photos.gmem.ca";
description = "Image hosting"; description = "Image hosting";
@ -103,7 +118,8 @@ let homepage-config = {
}; };
}; };
} }
{ "NextDNS Tailscale" = { {
"NextDNS Tailscale" = {
icon = "nextdns.png"; icon = "nextdns.png";
href = "https://my.nextdns.io/74c6db/setup"; href = "https://my.nextdns.io/74c6db/setup";
description = "Tailnet DNS provider"; description = "Tailnet DNS provider";
@ -118,7 +134,8 @@ let homepage-config = {
} }
{ {
Reading = [ Reading = [
{ FreshRSS = { {
FreshRSS = {
icon = "freshrss.png"; icon = "freshrss.png";
href = "https://freshrss.gmem.ca"; href = "https://freshrss.gmem.ca";
description = "FreshRSS RSS Reader"; description = "FreshRSS RSS Reader";
@ -130,12 +147,14 @@ let homepage-config = {
}; };
}; };
} }
{ "Lobste.rs" = { {
"Lobste.rs" = {
href = "https://lobste.rs"; href = "https://lobste.rs";
description = "News aggregator"; description = "News aggregator";
}; };
} }
{ "Hacker News" = { {
"Hacker News" = {
href = "https://news.ycombinator.com"; href = "https://news.ycombinator.com";
description = "VC news aggregator"; description = "VC news aggregator";
}; };
@ -144,7 +163,8 @@ let homepage-config = {
} }
{ {
"Floofy.tech Infrastructure" = [ "Floofy.tech Infrastructure" = [
{ Mastodon = { {
Mastodon = {
icon = "mastodon.png"; icon = "mastodon.png";
href = "https://floofy.tech"; href = "https://floofy.tech";
description = "Primary Mastodon instance"; description = "Primary Mastodon instance";
@ -154,19 +174,22 @@ let homepage-config = {
}; };
}; };
} }
{ Grafana = { {
Grafana = {
icon = "grafana.png"; icon = "grafana.png";
href = "https://grafana.services.floofy.tech"; href = "https://grafana.services.floofy.tech";
description = "Metrics and Monitoring"; description = "Metrics and Monitoring";
}; };
} }
{ vSphere = { {
vSphere = {
icon = "vmware-esxi.png"; icon = "vmware-esxi.png";
href = "https://vcenter.services.floofy.tech"; href = "https://vcenter.services.floofy.tech";
description = "Hypervisor Manager"; description = "Hypervisor Manager";
}; };
} }
{ "vrclub.social" = { {
"vrclub.social" = {
icon = "calckey.png"; icon = "calckey.png";
href = "https://vrclub.social"; href = "https://vrclub.social";
description = "Firefish instance for VR clubs"; description = "Firefish instance for VR clubs";
@ -176,13 +199,15 @@ let homepage-config = {
} }
{ {
"Tools" = [ "Tools" = [
{ "IT Tools" = { {
"IT Tools" = {
icon = "it-tools.png"; icon = "it-tools.png";
href = "https://tools.gmem.ca"; href = "https://tools.gmem.ca";
description = "Various useful tools"; description = "Various useful tools";
}; };
} }
{ Cyberchef = { {
Cyberchef = {
icon = "cyberchef.png"; icon = "cyberchef.png";
href = "https://gchq.github.io/CyberChef/"; href = "https://gchq.github.io/CyberChef/";
description = "More useful tools, mostly text manipulation"; description = "More useful tools, mostly text manipulation";
@ -192,7 +217,8 @@ let homepage-config = {
} }
{ {
"Backup Status" = [ "Backup Status" = [
{ "gsimmer backups" = { {
"gsimmer backups" = {
icon = "healthchecks.png"; icon = "healthchecks.png";
href = "https://healthchecks.gmem.ca"; href = "https://healthchecks.gmem.ca";
description = "Uptime monitor for recurring tasks"; description = "Uptime monitor for recurring tasks";
@ -204,7 +230,8 @@ let homepage-config = {
}; };
}; };
} }
{ "becki backups" = { {
"becki backups" = {
icon = "healthchecks.png"; icon = "healthchecks.png";
href = "https://healthchecks.gmem.ca"; href = "https://healthchecks.gmem.ca";
description = "Uptime monitor for recurring tasks"; description = "Uptime monitor for recurring tasks";
@ -216,7 +243,8 @@ let homepage-config = {
}; };
}; };
} }
{ "apps backups" = { {
"apps backups" = {
icon = "healthchecks.png"; icon = "healthchecks.png";
href = "https://healthchecks.gmem.ca"; href = "https://healthchecks.gmem.ca";
description = "Uptime monitor for recurring tasks"; description = "Uptime monitor for recurring tasks";
@ -272,8 +300,7 @@ let homepage-config = {
} }
]; ];
}; };
in in {
{
kubernetes.helm.releases.homepage = { kubernetes.helm.releases.homepage = {
chart = kubenix.lib.helm.fetch { chart = kubenix.lib.helm.fetch {
repo = "https://jameswynn.github.io/helm-charts"; repo = "https://jameswynn.github.io/helm-charts";
@ -307,7 +334,7 @@ in
]; ];
tls = [ tls = [
{ {
hosts = [ "home.gmem.ca" ]; hosts = ["home.gmem.ca"];
secretName = "gmem-ca-wildcard"; secretName = "gmem-ca-wildcard";
} }
]; ];
@ -319,8 +346,8 @@ in
metadata.namespace = "default"; metadata.namespace = "default";
spec.template = { spec.template = {
metadata.annotations."gmem.ca/homepage-config-hash" = (builtins.hashString "md5" (builtins.toJSON homepage-config)); metadata.annotations."gmem.ca/homepage-config-hash" = builtins.hashString "md5" (builtins.toJSON homepage-config);
spec.containers.homepage.envFrom = [ { secretRef.name = "homepage-config"; } ]; spec.containers.homepage.envFrom = [{secretRef.name = "homepage-config";}];
}; };
}; };
} }

View file

@ -1,4 +1,9 @@
{ lib, config, kubenix, ... }: { {
lib,
config,
kubenix,
...
}: {
kubernetes.helm.releases.immich = { kubernetes.helm.releases.immich = {
chart = kubenix.lib.helm.fetch { chart = kubenix.lib.helm.fetch {
repo = "https://immich-app.github.io/immich-charts"; repo = "https://immich-app.github.io/immich-charts";
@ -24,11 +29,16 @@
annotations = { annotations = {
"cert-manager.io/issuer" = "le-issuer"; "cert-manager.io/issuer" = "le-issuer";
}; };
tls = [ { hosts = [ "photos.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["photos.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
hosts = [ hosts = [
{ {
host = "photos.gmem.ca"; host = "photos.gmem.ca";
paths = [ { path = "/"; } ]; paths = [{path = "/";}];
} }
]; ];
}; };

View file

@ -2,8 +2,7 @@ let
appName = "soju"; appName = "soju";
sojuImage = "git.gmem.ca/arch/soju:latest"; sojuImage = "git.gmem.ca/arch/soju:latest";
gamjaImage = "git.gmem.ca/arch/gamja:latest"; gamjaImage = "git.gmem.ca/arch/gamja:latest";
in in {
{
kubernetes.resources.services.soju = { kubernetes.resources.services.soju = {
spec = { spec = {
type = "NodePort"; type = "NodePort";
@ -45,8 +44,17 @@ in
soju = { soju = {
image = sojuImage; image = sojuImage;
imagePullPolicy = "Always"; imagePullPolicy = "Always";
volumeMounts = [ { name = "config"; mountPath = "/etc/soju/config"; subPath = "config"; } volumeMounts = [
{ name = "ssl"; mountPath = "/ssl"; } ]; {
name = "config";
mountPath = "/etc/soju/config";
subPath = "config";
}
{
name = "ssl";
mountPath = "/ssl";
}
];
ports.tls.containerPort = 6697; ports.tls.containerPort = 6697;
ports.ws.containerPort = 80; ports.ws.containerPort = 80;
@ -92,32 +100,46 @@ in
"cert-manager.io/issuer" = "le-issuer"; "cert-manager.io/issuer" = "le-issuer";
}; };
spec = { spec = {
tls = [ { hosts = [ "irc.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
rules = [ { host = "irc.gmem.ca"; http.paths = [ {
{ path = "/"; pathType = "Prefix"; hosts = ["irc.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
rules = [
{
host = "irc.gmem.ca";
http.paths = [
{
path = "/";
pathType = "Prefix";
backend.service = { backend.service = {
name = "gamja"; name = "gamja";
port.number = 80; port.number = 80;
}; };
} }
{ path = "/socket"; pathType = "Prefix"; {
path = "/socket";
pathType = "Prefix";
backend.service = { backend.service = {
name = "soju-ws"; name = "soju-ws";
port.number = 80; port.number = 80;
}; };
} }
];}]; ];
}
];
}; };
}; };
kubernetes.resources.configMaps.soju.data.config = '' kubernetes.resources.configMaps.soju.data.config = ''
listen ircs:// listen ircs://
listen unix+admin:///app/admin listen unix+admin:///app/admin
listen ws+insecure:// listen ws+insecure://
hostname irc.gmem.ca hostname irc.gmem.ca
title irc.gmem.ca title irc.gmem.ca
db postgres "dbname=soju" db postgres "dbname=soju"
message-store db message-store db
tls /ssl/tls.crt /ssl/tls.key tls /ssl/tls.crt /ssl/tls.key
''; '';
} }

View file

@ -1,5 +1,12 @@
{ lib, config, kubenix, ... }: { {
imports = [ kubenix.modules.k8s kubenix.modules.helm lib,
config,
kubenix,
...
}: {
imports = [
kubenix.modules.k8s
kubenix.modules.helm
(import ./custom.nix) (import ./custom.nix)
(import ./nginx.nix) (import ./nginx.nix)
(import ./tclip.nix) (import ./tclip.nix)

View file

@ -1,8 +1,7 @@
let let
appName = "netbootxyz"; appName = "netbootxyz";
netbootxyzImage = "ghcr.io/netbootxyz/netbootxyz"; netbootxyzImage = "ghcr.io/netbootxyz/netbootxyz";
in in {
{
kubernetes.resources.services.netbootxyz = { kubernetes.resources.services.netbootxyz = {
spec = { spec = {
selector.app = appName; selector.app = appName;
@ -35,16 +34,28 @@ in
metadata.labels.app = appName; metadata.labels.app = appName;
spec = { spec = {
volumes = [ volumes = [
{ name = "config"; persistentVolumeClaim.claimName = "netbootxyz-config"; } {
{ name = "assets"; persistentVolumeClaim.claimName = "netbootxyz-assets"; } name = "config";
persistentVolumeClaim.claimName = "netbootxyz-config";
}
{
name = "assets";
persistentVolumeClaim.claimName = "netbootxyz-assets";
}
]; ];
containers = { containers = {
netbootxyz = { netbootxyz = {
image = netbootxyzImage; image = netbootxyzImage;
imagePullPolicy = "Always"; imagePullPolicy = "Always";
volumeMounts = [ volumeMounts = [
{ mountPath = "/config"; name = "config"; } {
{ mountPath = "/assets"; name = "assets"; } mountPath = "/config";
name = "config";
}
{
mountPath = "/assets";
name = "assets";
}
]; ];
env.SUBFOLDER.value = "/ui/"; env.SUBFOLDER.value = "/ui/";
ports.http.containerPort = 80; ports.http.containerPort = 80;
@ -62,12 +73,12 @@ in
kubernetes.resources.persistentVolumeClaims.netbootxyz-config.spec = { kubernetes.resources.persistentVolumeClaims.netbootxyz-config.spec = {
resources.requests.storage = "1Gi"; resources.requests.storage = "1Gi";
volumeMode = "Filesystem"; volumeMode = "Filesystem";
accessModes = [ "ReadWriteMany" ]; accessModes = ["ReadWriteMany"];
}; };
kubernetes.resources.persistentVolumeClaims.netbootxyz-assets.spec = { kubernetes.resources.persistentVolumeClaims.netbootxyz-assets.spec = {
resources.requests.storage = "10Gi"; resources.requests.storage = "10Gi";
volumeMode = "Filesystem"; volumeMode = "Filesystem";
accessModes = [ "ReadWriteMany" ]; accessModes = ["ReadWriteMany"];
}; };
kubernetes.resources.ingresses.netbootxyz = { kubernetes.resources.ingresses.netbootxyz = {
@ -76,22 +87,35 @@ in
"nginx.ingress.kubernetes.io/ssl-redirect" = "false"; "nginx.ingress.kubernetes.io/ssl-redirect" = "false";
}; };
spec = { spec = {
tls = [ { hosts = [ "netboot.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
rules = [ { host = "netboot.gmem.ca"; http.paths = [ {
{ path = "/ui"; pathType = "Prefix"; hosts = ["netboot.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
rules = [
{
host = "netboot.gmem.ca";
http.paths = [
{
path = "/ui";
pathType = "Prefix";
backend.service = { backend.service = {
name = "netbootxyz"; name = "netbootxyz";
port.number = 3000; port.number = 3000;
}; };
} }
{ path = "/"; pathType = "Prefix"; {
path = "/";
pathType = "Prefix";
backend.service = { backend.service = {
name = "netbootxyz"; name = "netbootxyz";
port.number = 80; port.number = 80;
}; };
} }
];}]; ];
}
];
}; };
}; };
} }

View file

@ -1,4 +1,9 @@
{ lib, config, kubenix, ... }: { {
lib,
config,
kubenix,
...
}: {
kubernetes.helm.releases.ingress-nginx = { kubernetes.helm.releases.ingress-nginx = {
namespace = "ingress-nginx"; namespace = "ingress-nginx";
chart = kubenix.lib.helm.fetch { chart = kubenix.lib.helm.fetch {

View file

@ -1,8 +1,7 @@
let let
appName = "overseerr"; appName = "overseerr";
appImage = "sctx/overseerr"; appImage = "sctx/overseerr";
in in {
{
kubernetes.resources.services.overseerr = { kubernetes.resources.services.overseerr = {
spec = { spec = {
selector.app = appName; selector.app = appName;
@ -25,7 +24,10 @@ in
overseerr = { overseerr = {
image = appImage; image = appImage;
volumeMounts = [ volumeMounts = [
{ name = "data"; mountPath = "/app/config"; } {
name = "data";
mountPath = "/app/config";
}
]; ];
ports.metrics.containerPort = 5055; ports.metrics.containerPort = 5055;
resources = { resources = {
@ -43,10 +45,11 @@ in
}; };
}; };
volumeClaimTemplates = [ volumeClaimTemplates = [
{ metadata.name = "data"; {
metadata.name = "data";
spec = { spec = {
storageClassName = "nfs-client"; storageClassName = "nfs-client";
accessModes = [ "ReadWriteOnce" ]; accessModes = ["ReadWriteOnce"];
resources.requests.storage = "1Gi"; resources.requests.storage = "1Gi";
}; };
} }
@ -60,15 +63,23 @@ in
}; };
}; };
spec = { spec = {
tls = [ { hosts = [ "request-media.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["request-media.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
rules = [ rules = [
{ {
host = "request-media.gmem.ca"; host = "request-media.gmem.ca";
http.paths = [ http.paths = [
{ path = "/"; pathType = "Prefix"; {
path = "/";
pathType = "Prefix";
backend.service = { backend.service = {
name = appName; name = appName;
port.name = "http"; }; port.name = "http";
};
} }
]; ];
} }

View file

@ -1,4 +1,9 @@
{ lib, config, kubenix, ... }: { {
lib,
config,
kubenix,
...
}: {
kubernetes.helm.releases.piped = { kubernetes.helm.releases.piped = {
namespace = "default"; namespace = "default";
chart = kubenix.lib.helm.fetch { chart = kubenix.lib.helm.fetch {
@ -20,24 +25,48 @@
password = "password"; password = "password";
}; };
}; };
fontend.env.BACKEND_HOSTNAME= "pipedapi.gmem.ca"; fontend.env.BACKEND_HOSTNAME = "pipedapi.gmem.ca";
ingress = { ingress = {
main = { main = {
tls = [ { hosts = [ "piped.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["piped.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
hosts = [ hosts = [
{ host = "piped.gmem.ca"; paths = [ { path = "/"; } ]; } {
host = "piped.gmem.ca";
paths = [{path = "/";}];
}
]; ];
}; };
backend = { backend = {
tls = [ { hosts = [ "pipedapi.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["pipedapi.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
hosts = [ hosts = [
{ host = "pipedapi.gmem.ca"; paths = [ { path = "/"; } ]; } {
host = "pipedapi.gmem.ca";
paths = [{path = "/";}];
}
]; ];
}; };
ytproxy = { ytproxy = {
tls = [ { hosts = [ "ytproxy.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["ytproxy.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
hosts = [ hosts = [
{ host = "ytproxy.gmem.ca"; paths = [ { path = "/"; } ]; } {
host = "ytproxy.gmem.ca";
paths = [{path = "/";}];
}
]; ];
}; };
}; };
@ -50,7 +79,7 @@
restartPolicy = "Never"; restartPolicy = "Never";
containers.refresh-subscriptions = { containers.refresh-subscriptions = {
image = "alpine:3.15"; image = "alpine:3.15";
envFrom = [ { secretRef.name = "hippo-pguser-piped"; } ]; envFrom = [{secretRef.name = "hippo-pguser-piped";}];
command = [ command = [
"/bin/ash" "/bin/ash"
"-c" "-c"

View file

@ -2,7 +2,12 @@ let
appName = "pterodactyl-panel"; appName = "pterodactyl-panel";
pterodactyl-panel-Image = "git.gmem.ca/arch/pterodactyl-panel:latest"; pterodactyl-panel-Image = "git.gmem.ca/arch/pterodactyl-panel:latest";
in in
{ lib, config, kubenix, ... }: { {
lib,
config,
kubenix,
...
}: {
kubernetes.resources.services.pterodactyl-panel = { kubernetes.resources.services.pterodactyl-panel = {
spec = { spec = {
selector.app = appName; selector.app = appName;
@ -24,18 +29,22 @@ in
imagePullPolicy = "Always"; imagePullPolicy = "Always";
ports.http.containerPort = 8080; ports.http.containerPort = 8080;
volumeMounts = [ volumeMounts = [
{ name = "data"; mountPath = "/var/www/pterodactyl/storage/app"; } {
name = "data";
mountPath = "/var/www/pterodactyl/storage/app";
}
]; ];
envFrom = [ { secretRef.name = "pterodactyl"; } ]; envFrom = [{secretRef.name = "pterodactyl";}];
}; };
}; };
}; };
}; };
volumeClaimTemplates = [ volumeClaimTemplates = [
{ metadata.name = "data"; {
metadata.name = "data";
spec = { spec = {
storageClassName = "nfs-client"; storageClassName = "nfs-client";
accessModes = [ "ReadWriteOnce" ]; accessModes = ["ReadWriteOnce"];
resources.requests.storage = "1Gi"; resources.requests.storage = "1Gi";
}; };
} }
@ -61,19 +70,27 @@ in
}; };
}; };
spec = { spec = {
tls = [ { hosts = [ "games.gmem.ca" ]; secretName = "gmem-ca-wildcard"; } ]; tls = [
{
hosts = ["games.gmem.ca"];
secretName = "gmem-ca-wildcard";
}
];
rules = [ rules = [
{ {
host = "games.gmem.ca"; host = "games.gmem.ca";
http.paths = [ http.paths = [
{ path = "/"; pathType = "Prefix"; {
path = "/";
pathType = "Prefix";
backend.service = { backend.service = {
name = appName; name = appName;
port.name = "http"; }; port.name = "http";
};
} }
]; ];
} }
]; ];
}; };
}; };
} }

View file

@ -2,12 +2,16 @@ let
appName = "tclip"; appName = "tclip";
litestreamImage = "litestream/litestream:sha-749bc0d"; litestreamImage = "litestream/litestream:sha-749bc0d";
tclipImage = "git.gmem.ca/arch/tclip:arm"; tclipImage = "git.gmem.ca/arch/tclip:arm";
in in {
{
kubernetes.resources."monitoring.coreos.com"."v1".ServiceMonitor.tclip = { kubernetes.resources."monitoring.coreos.com"."v1".ServiceMonitor.tclip = {
spec = { spec = {
selector.matchLabels.app = appName; selector.matchLabels.app = appName;
endpoints = [ { port = "metrics"; interval = "30s"; } ]; endpoints = [
{
port = "metrics";
interval = "30s";
}
];
}; };
}; };
kubernetes.resources.services.tclip = { kubernetes.resources.services.tclip = {
@ -36,41 +40,67 @@ in
}; };
initContainers.init-litestream = { initContainers.init-litestream = {
image = litestreamImage; image = litestreamImage;
args = ["restore" "-if-db-not-exists" "-if-replica-exists" "-v" "/data/data.db" ]; args = ["restore" "-if-db-not-exists" "-if-replica-exists" "-v" "/data/data.db"];
volumeMounts = [ volumeMounts = [
{ name = "data"; mountPath = "/data"; } {
{ name = "litestream"; mountPath = "/etc/litestream.yml"; subPath = "tclip.yml"; } name = "data";
mountPath = "/data";
}
{
name = "litestream";
mountPath = "/etc/litestream.yml";
subPath = "tclip.yml";
}
]; ];
envFrom = [ { secretRef.name = "tclip-litestream-s3"; } ]; envFrom = [{secretRef.name = "tclip-litestream-s3";}];
}; };
containers = { containers = {
tclip = { tclip = {
image = tclipImage; image = tclipImage;
imagePullPolicy = "Always"; imagePullPolicy = "Always";
volumeMounts = [ { name = "data"; mountPath = "/data"; } ]; volumeMounts = [
{
name = "data";
mountPath = "/data";
}
];
env = [ env = [
{ name = "DATA_DIR"; value = "/data"; } {
{ name = "USE_FUNNEL"; value = "true"; } name = "DATA_DIR";
value = "/data";
}
{
name = "USE_FUNNEL";
value = "true";
}
]; ];
}; };
litestream = { litestream = {
image = litestreamImage; image = litestreamImage;
args = [ "replicate" ]; args = ["replicate"];
volumeMounts = [ volumeMounts = [
{ name = "data"; mountPath = "/data"; } {
{ name = "litestream"; mountPath = "/etc/litestream.yml"; subPath = "tclip.yml"; } name = "data";
mountPath = "/data";
}
{
name = "litestream";
mountPath = "/etc/litestream.yml";
subPath = "tclip.yml";
}
]; ];
envFrom = [ { secretRef.name = "tclip-litestream-s3"; } ]; envFrom = [{secretRef.name = "tclip-litestream-s3";}];
ports.metrics.containerPort = 9090; ports.metrics.containerPort = 9090;
}; };
}; };
}; };
}; };
volumeClaimTemplates = [ volumeClaimTemplates = [
{ metadata.name = "data"; {
metadata.name = "data";
spec = { spec = {
storageClassName = "nfs-client"; storageClassName = "nfs-client";
accessModes = [ "ReadWriteOnce" ]; accessModes = ["ReadWriteOnce"];
resources.requests.storage = "1Gi"; resources.requests.storage = "1Gi";
}; };
} }

View file

@ -1,12 +1,16 @@
let let
appName = "vrchat-prometheus-exporter"; appName = "vrchat-prometheus-exporter";
appImage = "git.gmem.ca/arch/vrchat-prometheus-adapter:arm"; appImage = "git.gmem.ca/arch/vrchat-prometheus-adapter:arm";
in in {
{
kubernetes.resources."monitoring.coreos.com"."v1".ServiceMonitor.vrchat-prometheus-adapter = { kubernetes.resources."monitoring.coreos.com"."v1".ServiceMonitor.vrchat-prometheus-adapter = {
spec = { spec = {
selector.matchLabels.app = appName; selector.matchLabels.app = appName;
endpoints = [ { port = "metrics"; interval = "60s"; } ]; endpoints = [
{
port = "metrics";
interval = "60s";
}
];
}; };
}; };
kubernetes.resources.services.vrchat-prometheus-adapter = { kubernetes.resources.services.vrchat-prometheus-adapter = {
@ -35,8 +39,14 @@ in
vrchat-prometheus-adapter = { vrchat-prometheus-adapter = {
image = appImage; image = appImage;
imagePullPolicy = "Always"; imagePullPolicy = "Always";
volumeMounts = [ { name = "config"; mountPath = "/config.toml"; subPath = "config.toml"; } ]; volumeMounts = [
envFrom = [ { secretRef.name = "vrchat-prometheus-adapter"; } ]; {
name = "config";
mountPath = "/config.toml";
subPath = "config.toml";
}
];
envFrom = [{secretRef.name = "vrchat-prometheus-adapter";}];
ports.metrics.containerPort = 6534; ports.metrics.containerPort = 6534;
resources = { resources = {
requests = { requests = {

View file

@ -1,8 +1,10 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ # Include the results of the hardware scan. pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware.nix ./hardware.nix
]; ];
@ -12,20 +14,19 @@
}; };
boot = { boot = {
supportedFilesystems = [ "nfs" ]; supportedFilesystems = ["nfs"];
kernelPackages = pkgs.linuxPackages_rpi4; kernelPackages = pkgs.linuxPackages_rpi4;
kernelParams = [ "cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1" ]; kernelParams = ["cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1"];
loader = { loader = {
grub.enable = false; grub.enable = false;
generic-extlinux-compatible.enable = true; generic-extlinux-compatible.enable = true;
}; };
}; };
swapDevices = [ swapDevices = [
{ {
device = "/var/lib/swapfile"; device = "/var/lib/swapfile";
size = 8*1024; size = 8 * 1024;
} }
]; ];
@ -52,8 +53,8 @@
firewall = { firewall = {
trustedInterfaces = ["tailscale0"]; trustedInterfaces = ["tailscale0"];
checkReversePath = "loose"; checkReversePath = "loose";
allowedUDPPorts = [ 41641 ]; allowedUDPPorts = [41641];
allowedTCPPorts = [ 22 80 443 6443 10250 ]; allowedTCPPorts = [22 80 443 6443 10250];
enable = false; enable = false;
}; };
nftables.enable = false; nftables.enable = false;
@ -63,7 +64,7 @@
users.users.gsimmer = { users.users.gsimmer = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = ["wheel"];
packages = with pkgs; [ packages = with pkgs; [
tree tree
]; ];
@ -72,7 +73,8 @@
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4="; hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4=";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
}; };
@ -108,5 +110,4 @@
}; };
system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT? system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT?
} }

View file

@ -1,24 +1,28 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "uas" ]; boot.initrd.availableKernelModules = ["xhci_pci" "uas"];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [];
boot.kernelModules = [ ]; boot.kernelModules = [];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = [ ]; swapDevices = [];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -1,7 +1,9 @@
# WARN: this file will get overwritten by $ cachix use <name> # WARN: this file will get overwritten by $ cachix use <name>
{ pkgs, lib, ... }: {
pkgs,
let lib,
...
}: let
folder = ./cachix; folder = ./cachix;
toImport = name: value: folder + ("/" + name); toImport = name: value: folder + ("/" + name);
filterCaches = key: value: value == "regular" && lib.hasSuffix ".nix" key; filterCaches = key: value: value == "regular" && lib.hasSuffix ".nix" key;

View file

@ -1,8 +1,9 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ pkgs,
...
}: {
imports = [
./hardware-configuration.nix ./hardware-configuration.nix
]; ];
@ -15,12 +16,12 @@
}; };
}; };
tmp.cleanOnBoot = true; tmp.cleanOnBoot = true;
binfmt.emulatedSystems = [ "aarch64-linux" ]; binfmt.emulatedSystems = ["aarch64-linux"];
extraModulePackages = [ extraModulePackages = [
config.boot.kernelPackages.v4l2loopback config.boot.kernelPackages.v4l2loopback
]; ];
kernelPackages = pkgs.linuxPackages_zen; kernelPackages = pkgs.linuxPackages_zen;
kernelModules = [ "amdgpu" "coretemp" "kvm-amd" "v4l2loopback" ]; kernelModules = ["amdgpu" "coretemp" "kvm-amd" "v4l2loopback"];
}; };
time.hardwareClockInLocalTime = true; time.hardwareClockInLocalTime = true;
@ -31,7 +32,7 @@
}; };
nix = { nix = {
settings = { settings = {
experimental-features = [ "nix-command" "flakes" ]; experimental-features = ["nix-command" "flakes"];
auto-optimise-store = true; auto-optimise-store = true;
}; };
gc = { gc = {
@ -48,11 +49,21 @@
networkmanager.enable = true; networkmanager.enable = true;
firewall = { firewall = {
enable = true; enable = true;
allowedUDPPortRanges = [ { from = 27031; to = 27036; } ]; allowedUDPPortRanges = [
allowedTCPPortRanges = [ { from = 27036; to = 27037; } ]; {
allowedTCPPorts = [ 7000 7100 7001 22000 8000 3000 9943 9944 ]; from = 27031;
allowedUDPPorts = [ 69 6000 6001 7011 41641 3478 22000 21027 9943 9944 ]; to = 27036;
trustedInterfaces = [ "enp4s0" "tailscale0" "docker0" ]; }
];
allowedTCPPortRanges = [
{
from = 27036;
to = 27037;
}
];
allowedTCPPorts = [7000 7100 7001 22000 8000 3000 9943 9944];
allowedUDPPorts = [69 6000 6001 7011 41641 3478 22000 21027 9943 9944];
trustedInterfaces = ["enp4s0" "tailscale0" "docker0"];
checkReversePath = "loose"; checkReversePath = "loose";
}; };
nftables.enable = true; nftables.enable = true;
@ -72,10 +83,13 @@
positions = { positions = {
filename = "/tmp/positions.yaml"; filename = "/tmp/positions.yaml";
}; };
clients = [{ clients = [
{
url = "http://monitoring:3030/loki/api/v1/push"; url = "http://monitoring:3030/loki/api/v1/push";
}]; }
scrape_configs = [{ ];
scrape_configs = [
{
job_name = "journal"; job_name = "journal";
journal = { journal = {
max_age = "12h"; max_age = "12h";
@ -84,11 +98,14 @@
host = "london"; host = "london";
}; };
}; };
relabel_configs = [{ relabel_configs = [
source_labels = [ "__journal__systemd_unit" ]; {
source_labels = ["__journal__systemd_unit"];
target_label = "unit"; target_label = "unit";
}]; }
}]; ];
}
];
}; };
}; };
fwupd.enable = true; fwupd.enable = true;
@ -105,12 +122,13 @@
enable = true; enable = true;
listenAddress = "100.110.180.123"; listenAddress = "100.110.180.123";
enabledCollectors = [ enabledCollectors = [
"systemd" "processes" "systemd"
"processes"
]; ];
}; };
dbus.enable = true; dbus.enable = true;
yubikey-agent.enable = true; yubikey-agent.enable = true;
udev.packages = with pkgs; [ libu2f-host yubikey-personalization ]; udev.packages = with pkgs; [libu2f-host yubikey-personalization];
tailscale.enable = true; tailscale.enable = true;
pcscd.enable = true; pcscd.enable = true;
mullvad-vpn.enable = true; mullvad-vpn.enable = true;
@ -133,7 +151,7 @@
}; };
printing = { printing = {
enable = true; enable = true;
drivers = [ pkgs.gutenprint pkgs.gutenprintBin ]; drivers = [pkgs.gutenprint pkgs.gutenprintBin];
}; };
avahi = { avahi = {
nssmdns4 = true; nssmdns4 = true;
@ -164,7 +182,7 @@
}; };
sane.enable = true; sane.enable = true;
sane.extraBackends = [ pkgs.epkowa ]; sane.extraBackends = [pkgs.epkowa];
pulseaudio.enable = false; pulseaudio.enable = false;
}; };
environment.variables.AMD_VULKAN_ICD = "RADV"; environment.variables.AMD_VULKAN_ICD = "RADV";
@ -194,7 +212,7 @@
shell = pkgs.fish; shell = pkgs.fish;
isNormalUser = true; isNormalUser = true;
description = "Gabriel Simmer"; description = "Gabriel Simmer";
extraGroups = [ "networkmanager" "wheel" "libvirtd" "qemu-libvirtd" "docker" ]; extraGroups = ["networkmanager" "wheel" "libvirtd" "qemu-libvirtd" "docker"];
packages = with pkgs; [ packages = with pkgs; [
firefox-wayland firefox-wayland
vim vim
@ -223,9 +241,9 @@
enableDefaultPackages = true; enableDefaultPackages = true;
}; };
systemd.packages = with pkgs; [ cloudflare-warp ]; systemd.packages = with pkgs; [cloudflare-warp];
environment = { environment = {
shells = with pkgs; [ zsh fish ]; shells = with pkgs; [zsh fish];
systemPackages = with pkgs; [ systemPackages = with pkgs; [
os-prober os-prober
tailscale tailscale
@ -276,5 +294,4 @@
rtkit.enable = true; rtkit.enable = true;
}; };
system.stateVersion = "23.05"; # Did you read the comment? system.stateVersion = "23.05"; # Did you read the comment?
} }

View file

@ -1,23 +1,31 @@
{ config, pkgs, callPackage, lib, ... }:
{ {
config,
pkgs,
callPackage,
lib,
...
}: {
nixpkgs = { nixpkgs = {
config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [ config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"parsec-bin" "parsec-bin"
"discord" "discord"
]; ];
config.allowUnfree = true; config.allowUnfree = true;
overlays = overlays = let
let
discordOverlay = self: super: { discordOverlay = self: super: {
discord = super.discord.override { withVencord = true; withOpenASAR = true; }; discord = super.discord.override {
withVencord = true;
withOpenASAR = true;
}; };
in };
[ in [
(import (builtins.fetchTarball { (import (builtins.fetchTarball {
url = "https://github.com/nix-community/emacs-overlay/archive/master.tar.gz"; url = "https://github.com/nix-community/emacs-overlay/archive/master.tar.gz";
sha256 = "1nglxrfynyjmqfzz81y4idc40c6rbsaa4jb4ishiwibdkh85nyf6"; sha256 = "1nglxrfynyjmqfzz81y4idc40c6rbsaa4jb4ishiwibdkh85nyf6";
})) discordOverlay]; }))
discordOverlay
];
}; };
home = { home = {
username = "gsimmer"; username = "gsimmer";
@ -27,12 +35,12 @@
services.pueue = { services.pueue = {
enable = true; enable = true;
settings = { settings = {
client = { }; client = {};
daemon.callback = '' daemon.callback = ''
${pkgs.libnotify}/bin/notify-send -t 4000 "Task {{id}} finished, status '{{result}}'" "<b>{{exit_code}}</b> {{command}}" ${pkgs.libnotify}/bin/notify-send -t 4000 "Task {{id}} finished, status '{{result}}'" "<b>{{exit_code}}</b> {{command}}"
''; '';
shared = { }; shared = {};
profiles = { }; profiles = {};
}; };
}; };

View file

@ -1,30 +1,34 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = ["nvme" "ahci" "xhci_pci" "usbhid" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = ["kvm-amd"];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/736c20e1-f11a-4af7-88f2-bba7b0f09939"; device = "/dev/disk/by-uuid/736c20e1-f11a-4af7-88f2-bba7b0f09939";
fsType = "xfs"; fsType = "xfs";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/2A2C-A8CE"; device = "/dev/disk/by-uuid/2A2C-A8CE";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/41c7d0e1-e015-4d78-a0fb-f039a7f648ef"; } {device = "/dev/disk/by-uuid/41c7d0e1-e015-4d78-a0fb-f039a7f648ef";}
]; ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View file

@ -1,9 +1,12 @@
{ config, lib, pkgs, ... }: {
let config,
lib,
pkgs,
...
}: let
rev = "master"; # 'rev' could be a git rev, to pin the overlay. rev = "master"; # 'rev' could be a git rev, to pin the overlay.
url = "https://github.com/nix-community/nixpkgs-wayland/archive/${rev}.tar.gz"; url = "https://github.com/nix-community/nixpkgs-wayland/archive/${rev}.tar.gz";
waylandOverlay = (import "${builtins.fetchTarball url}/overlay.nix"); waylandOverlay = import "${builtins.fetchTarball url}/overlay.nix";
in in {
{ nixpkgs.overlays = [waylandOverlay];
nixpkgs.overlays = [ waylandOverlay ]; }
}

View file

@ -1,6 +1,8 @@
{ config, pkgs, ... }:
{ {
config,
pkgs,
...
}: {
imports = [ imports = [
./hardware.nix ./hardware.nix
./networking.nix # generated at runtime by nixos-infect ./networking.nix # generated at runtime by nixos-infect
@ -104,7 +106,8 @@
}; };
schema_config = { schema_config = {
configs = [{ configs = [
{
from = "2022-06-06"; from = "2022-06-06";
store = "boltdb-shipper"; store = "boltdb-shipper";
object_store = "filesystem"; object_store = "filesystem";
@ -113,7 +116,8 @@
prefix = "index_"; prefix = "index_";
period = "24h"; period = "24h";
}; };
}]; }
];
}; };
storage_config = { storage_config = {
@ -164,10 +168,13 @@
positions = { positions = {
filename = "/tmp/positions.yaml"; filename = "/tmp/positions.yaml";
}; };
clients = [{ clients = [
{
url = "http://127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}/loki/api/v1/push"; url = "http://127.0.0.1:${toString config.services.loki.configuration.server.http_listen_port}/loki/api/v1/push";
}]; }
scrape_configs = [{ ];
scrape_configs = [
{
job_name = "journal"; job_name = "journal";
journal = { journal = {
max_age = "12h"; max_age = "12h";
@ -176,11 +183,14 @@
host = "monitoring"; host = "monitoring";
}; };
}; };
relabel_configs = [{ relabel_configs = [
source_labels = [ "__journal__systemd_unit" ]; {
source_labels = ["__journal__systemd_unit"];
target_label = "unit"; target_label = "unit";
}]; }
}]; ];
}
];
}; };
}; };
services.alertmanager-ntfy = { services.alertmanager-ntfy = {
@ -211,18 +221,23 @@
globalConfig = { globalConfig = {
scrape_interval = "15s"; scrape_interval = "15s";
}; };
alertmanagers = [ { alertmanagers = [
{
basic_auth = { basic_auth = {
username = "homelab"; username = "homelab";
password_file = config.age.secrets.prometheus-password-secret.path; password_file = config.age.secrets.prometheus-password-secret.path;
}; };
static_configs = [ { static_configs = [
{
targets = [ targets = [
"localhost:9093" "localhost:9093"
]; ];
} ]; }
} ]; ];
rules = [(builtins.toJSON { }
];
rules = [
(builtins.toJSON {
groups = [ groups = [
{ {
name = "internet_connection"; name = "internet_connection";
@ -255,11 +270,13 @@
}; };
} }
]; ];
}]; }
})]; ];
})
];
alertmanager = { alertmanager = {
enable = true; enable = true;
extraFlags = [ "--web.config.file=${config.age.secrets.prometheus-webconfig-secret.path}" ]; extraFlags = ["--web.config.file=${config.age.secrets.prometheus-webconfig-secret.path}"];
webExternalUrl = "https://alerts.gmem.ca"; webExternalUrl = "https://alerts.gmem.ca";
configText = '' configText = ''
global: {} global: {}
@ -284,63 +301,75 @@
''; '';
}; };
port = 9001; port = 9001;
extraFlags = [ "--web.enable-remote-write-receiver" ]; extraFlags = ["--web.enable-remote-write-receiver"];
scrapeConfigs = [ scrapeConfigs = [
{ {
job_name = "proxmox"; job_name = "proxmox";
metrics_path = "/pve"; metrics_path = "/pve";
params = { "target" = [ "localhost" ]; }; params = {"target" = ["localhost"];};
static_configs = [ { targets = [ "proxmox:9221" ]; } ]; static_configs = [{targets = ["proxmox:9221"];}];
} }
{ {
job_name = "personal_hardware"; job_name = "personal_hardware";
static_configs = [ { targets = [ "london:9100" "vancouver:9100" "localhost:9100" ]; } ]; static_configs = [{targets = ["london:9100" "vancouver:9100" "localhost:9100"];}];
} }
{ {
job_name = "speedtest-exporter"; job_name = "speedtest-exporter";
scrape_interval = "1h"; scrape_interval = "1h";
scrape_timeout = "1m"; scrape_timeout = "1m";
static_configs = [ { targets = [ "vancouver:9798" ]; } ]; static_configs = [{targets = ["vancouver:9798"];}];
} }
{ {
job_name = "syncthing"; job_name = "syncthing";
static_configs = [ { targets = [ "vancouver:8384" "london:8384" ]; } ]; static_configs = [{targets = ["vancouver:8384" "london:8384"];}];
} }
{ {
job_name = "forgejo"; job_name = "forgejo";
static_configs = [ { targets = [ "git.gmem.ca" ]; } ]; static_configs = [{targets = ["git.gmem.ca"];}];
} }
{ {
job_name = "coredns"; job_name = "coredns";
static_configs = [ { targets = [ "vancouver:9253" ]; } ]; static_configs = [{targets = ["vancouver:9253"];}];
} }
{ {
job_name = "healthchecks"; job_name = "healthchecks";
scrape_interval = "60s"; scrape_interval = "60s";
metrics_path = "/projects/5f1de50f-a52d-4215-961f-aae7cc6cf6c9/metrics/TbMoU7SUdknzMe-H5Q4HzmKl3itOIrJk"; metrics_path = "/projects/5f1de50f-a52d-4215-961f-aae7cc6cf6c9/metrics/TbMoU7SUdknzMe-H5Q4HzmKl3itOIrJk";
static_configs = [ { targets = [ "localhost:8000" ]; } ]; static_configs = [{targets = ["localhost:8000"];}];
} }
{ {
job_name = "vrc_events"; job_name = "vrc_events";
scrape_interval = "60s"; scrape_interval = "60s";
static_configs = [ { targets = [ "vancouver:6534" ]; } ]; static_configs = [{targets = ["vancouver:6534"];}];
} }
{ {
job_name = "blackbox"; job_name = "blackbox";
metrics_path = "/probe"; metrics_path = "/probe";
params = { "modules" = [ "http_2xx" ]; }; params = {"modules" = ["http_2xx"];};
static_configs = [ { targets = [ "google.com" "gabrielsimmer.com" "artbybecki.com" ]; } ]; static_configs = [{targets = ["google.com" "gabrielsimmer.com" "artbybecki.com"];}];
relabel_configs = [ relabel_configs = [
{ source_labels = ["__address__"]; target_label = "__param_target"; } {
{ source_labels = ["__param_target"]; target_label = "instance"; } source_labels = ["__address__"];
{ source_labels = []; target_label = "__address__"; replacement = "vancouver:9115"; } ]; target_label = "__param_target";
}
{
source_labels = ["__param_target"];
target_label = "instance";
}
{
source_labels = [];
target_label = "__address__";
replacement = "vancouver:9115";
}
];
} }
]; ];
exporters.node = { exporters.node = {
enable = true; enable = true;
listenAddress = "127.0.0.1"; listenAddress = "127.0.0.1";
enabledCollectors = [ enabledCollectors = [
"systemd" "processes" "systemd"
"processes"
]; ];
}; };
}; };

View file

@ -1,14 +1,18 @@
{ modulesPath, ... }: {modulesPath, ...}: {
{ imports = [(modulesPath + "/profiles/qemu-guest.nix")];
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub = { boot.loader.grub = {
efiSupport = true; efiSupport = true;
efiInstallAsRemovable = true; efiInstallAsRemovable = true;
device = "nodev"; device = "nodev";
}; };
fileSystems."/boot" = { device = "/dev/disk/by-uuid/77CF-345D"; fsType = "vfat"; }; fileSystems."/boot" = {
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ]; device = "/dev/disk/by-uuid/77CF-345D";
boot.initrd.kernelModules = [ "nvme" ]; fsType = "vfat";
fileSystems."/" = { device = "/dev/sda1"; fsType = "ext4"; }; };
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront"];
boot.initrd.kernelModules = ["nvme"];
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
} }

View file

@ -1,8 +1,9 @@
{ lib, ... }: { {lib, ...}: {
# This file was populated at runtime with the networking # This file was populated at runtime with the networking
# details gathered from the active system. # details gathered from the active system.
networking = { networking = {
nameservers = [ "8.8.8.8" nameservers = [
"8.8.8.8"
]; ];
defaultGateway = "172.31.1.1"; defaultGateway = "172.31.1.1";
defaultGateway6 = { defaultGateway6 = {
@ -14,16 +15,34 @@
interfaces = { interfaces = {
eth0 = { eth0 = {
ipv4.addresses = [ ipv4.addresses = [
{ address="91.107.206.145"; prefixLength=32; } {
address = "91.107.206.145";
prefixLength = 32;
}
]; ];
ipv6.addresses = [ ipv6.addresses = [
{ address="2a01:4f8:c012:5ec6::1"; prefixLength=64; } {
{ address="fe80::9400:2ff:fe83:3979"; prefixLength=64; } address = "2a01:4f8:c012:5ec6::1";
prefixLength = 64;
}
{
address = "fe80::9400:2ff:fe83:3979";
prefixLength = 64;
}
];
ipv4.routes = [
{
address = "172.31.1.1";
prefixLength = 32;
}
];
ipv6.routes = [
{
address = "fe80::1";
prefixLength = 128;
}
]; ];
ipv4.routes = [ { address = "172.31.1.1"; prefixLength = 32; } ];
ipv6.routes = [ { address = "fe80::1"; prefixLength = 128; } ];
}; };
}; };
}; };
services.udev.extraRules = '' services.udev.extraRules = ''

View file

@ -1,8 +1,10 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ # Include the results of the hardware scan. pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware.nix ./hardware.nix
]; ];
@ -42,7 +44,7 @@
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
supportedFilesystems = ["zfs"]; supportedFilesystems = ["zfs"];
kernelModules = [ "coretemp" "kvm-amd" "it87" ]; kernelModules = ["coretemp" "kvm-amd" "it87"];
zfs.extraPools = ["tank"]; zfs.extraPools = ["tank"];
}; };
@ -58,10 +60,13 @@
positions = { positions = {
filename = "/tmp/positions.yaml"; filename = "/tmp/positions.yaml";
}; };
clients = [{ clients = [
{
url = "http://monitoring:3030/loki/api/v1/push"; url = "http://monitoring:3030/loki/api/v1/push";
}]; }
scrape_configs = [{ ];
scrape_configs = [
{
job_name = "journal"; job_name = "journal";
journal = { journal = {
max_age = "12h"; max_age = "12h";
@ -70,11 +75,14 @@
host = "vancouver"; host = "vancouver";
}; };
}; };
relabel_configs = [{ relabel_configs = [
source_labels = [ "__journal__systemd_unit" ]; {
source_labels = ["__journal__systemd_unit"];
target_label = "unit"; target_label = "unit";
}]; }
}]; ];
}
];
}; };
}; };
restic = { restic = {
@ -187,7 +195,9 @@
enable = true; enable = true;
listenAddress = "100.116.48.47"; listenAddress = "100.116.48.47";
enabledCollectors = [ enabledCollectors = [
"systemd" "zfs" "processes" "systemd"
"zfs"
"processes"
]; ];
}; };
}; };
@ -201,7 +211,7 @@
zfs.autoScrub.enable = true; zfs.autoScrub.enable = true;
tailscale.enable = true; tailscale.enable = true;
openssh.enable = true; openssh.enable = true;
xserver.videoDrivers = [ "nvidia" ]; xserver.videoDrivers = ["nvidia"];
nfs.server.enable = true; nfs.server.enable = true;
samba-wsdd.enable = true; samba-wsdd.enable = true;
samba = { samba = {
@ -282,8 +292,7 @@
addSSL = true; addSSL = true;
acmeRoot = null; acmeRoot = null;
locations."/" = { locations."/" = {
extraConfig = extraConfig = ''
''
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@ -400,8 +409,8 @@
trustedInterfaces = ["tailscale0"]; trustedInterfaces = ["tailscale0"];
checkReversePath = "loose"; checkReversePath = "loose";
enable = true; enable = true;
allowedTCPPorts = [ 22 80 443 9798 2049 ]; allowedTCPPorts = [22 80 443 9798 2049];
allowedUDPPorts = [ 41641 ]; allowedUDPPorts = [41641];
}; };
nftables.enable = true; nftables.enable = true;
}; };
@ -434,20 +443,21 @@
zsh.enable = true; zsh.enable = true;
fish.enable = true; fish.enable = true;
}; };
environment.shells = with pkgs; [ zsh fish ]; environment.shells = with pkgs; [zsh fish];
users.users = { users.users = {
gsimmer = { gsimmer = {
shell = pkgs.fish; shell = pkgs.fish;
isNormalUser = true; isNormalUser = true;
home = "/tank/gsimmer"; home = "/tank/gsimmer";
extraGroups = [ "wheel" "libvirtd" "qemu-libvirtd" ]; extraGroups = ["wheel" "libvirtd" "qemu-libvirtd"];
openssh.authorizedKeys.keys = let openssh.authorizedKeys.keys = let
authorizedKeys = pkgs.fetchurl { authorizedKeys = pkgs.fetchurl {
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4="; hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4=";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
}; };
becki = { becki = {
@ -460,11 +470,12 @@
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4="; hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4=";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
}; };
home-manager.users.gsimmer = { pkgs, ... }: { home-manager.users.gsimmer = {pkgs, ...}: {
programs.git = { programs.git = {
userName = "Gabriel Simmer"; userName = "Gabriel Simmer";
userEmail = "git@gmem.ca"; userEmail = "git@gmem.ca";
@ -487,7 +498,7 @@
virtualisation.oci-containers.containers = { virtualisation.oci-containers.containers = {
speedtest = { speedtest = {
image = "ghcr.io/miguelndecarvalho/speedtest-exporter"; image = "ghcr.io/miguelndecarvalho/speedtest-exporter";
ports = [ "9798:9798" ]; ports = ["9798:9798"];
}; };
}; };

View file

@ -1,30 +1,34 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.availableKernelModules = ["nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod"];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = ["kvm-amd"];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/c099cd1d-75a0-42ee-bffa-1e92cd241064"; device = "/dev/disk/by-uuid/c099cd1d-75a0-42ee-bffa-1e92cd241064";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/77EB-F216"; device = "/dev/disk/by-uuid/77EB-F216";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/6e19c559-000a-4ba4-b68c-7ec0794f45e4"; } {device = "/dev/disk/by-uuid/6e19c559-000a-4ba4-b68c-7ec0794f45e4";}
]; ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View file

@ -1,6 +1,9 @@
{ config, pkgs, callPackage, ... }:
{ {
config,
pkgs,
callPackage,
...
}: {
home.username = "gsimmer"; home.username = "gsimmer";
home.homeDirectory = "/tank/gsimmer"; home.homeDirectory = "/tank/gsimmer";
@ -11,7 +14,7 @@
enable = true; enable = true;
interactiveShellInit = '' interactiveShellInit = ''
set fish_greeting set fish_greeting
if test "$TERM" = "dumb" if test "$TERM" = "dumb"
function fish_prompt function fish_prompt
echo "\$ " echo "\$ "
end end
@ -19,11 +22,11 @@ if test "$TERM" = "dumb"
function fish_right_prompt; end function fish_right_prompt; end
function fish_greeting; end function fish_greeting; end
function fish_title; end function fish_title; end
end end
atuin init fish | source atuin init fish | source
''; '';
loginShellInit = '' loginShellInit = ''
if test "$TERM" = "dumb" if test "$TERM" = "dumb"
function fish_prompt function fish_prompt
echo "\$ " echo "\$ "
end end
@ -31,7 +34,7 @@ if test "$TERM" = "dumb"
function fish_right_prompt; end function fish_right_prompt; end
function fish_greeting; end function fish_greeting; end
function fish_title; end function fish_title; end
end end
''; '';
}; };
@ -49,7 +52,7 @@ end
enable = true; enable = true;
}; };
home.packages = with pkgs; [ atuin ]; home.packages = with pkgs; [atuin];
# This value determines the Home Manager release that your # This value determines the Home Manager release that your
# configuration is compatible with. This helps avoid breakage # configuration is compatible with. This helps avoid breakage

View file

@ -1,44 +1,47 @@
{ lib {
, fetchurl lib,
, installShellFiles fetchurl,
, makeWrapper installShellFiles,
, terraform makeWrapper,
, stdenvNoCC terraform,
, unzip stdenvNoCC,
}: unzip,
let }: let
inherit (stdenvNoCC.hostPlatform) system; inherit (stdenvNoCC.hostPlatform) system;
in in
stdenvNoCC.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "coder"; pname = "coder";
version = "2.3.3"; version = "2.3.3";
src = fetchurl { src = fetchurl {
sha256 = { sha256 =
{
x86_64-linux = "sha256-3gO71Eii3KBjn/oQ1Q3OCJ7S6H12iDYjOfqf43ph1nQ="; x86_64-linux = "sha256-3gO71Eii3KBjn/oQ1Q3OCJ7S6H12iDYjOfqf43ph1nQ=";
x86_64-darwin = lib.fakeHash; x86_64-darwin = lib.fakeHash;
aarch64-linux = "sha256-v7S22I62EKPcHO9yZGciKKftRlzIowfAeVgnccOdlSs="; aarch64-linux = "sha256-v7S22I62EKPcHO9yZGciKKftRlzIowfAeVgnccOdlSs=";
aarch64-darwin = ""; aarch64-darwin = "";
}.${system}; }
.${system};
url = url = let
let systemName =
systemName = { {
x86_64-linux = "linux_amd64"; x86_64-linux = "linux_amd64";
aarch64-linux = "linux_arm64"; aarch64-linux = "linux_arm64";
x86_64-darwin = "darwin_amd64"; x86_64-darwin = "darwin_amd64";
aarch64-darwin = "darwin_arm64"; aarch64-darwin = "darwin_arm64";
}.${system}; }
.${system};
ext = { ext =
{
x86_64-linux = "tar.gz"; x86_64-linux = "tar.gz";
aarch64-linux = "tar.gz"; aarch64-linux = "tar.gz";
x86_64-darwin = "zip"; x86_64-darwin = "zip";
aarch64-darwin = "zip"; aarch64-darwin = "zip";
}.${system}; }
in .${system};
"https://github.com/coder/coder/releases/download/v${version}/coder_${version}_${systemName}.${ext}"; in "https://github.com/coder/coder/releases/download/v${version}/coder_${version}_${systemName}.${ext}";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -66,7 +69,7 @@ stdenvNoCC.mkDerivation rec {
--fish <($out/bin/coder completion fish) \ --fish <($out/bin/coder completion fish) \
--zsh <($out/bin/coder completion zsh) --zsh <($out/bin/coder completion zsh)
wrapProgram $out/bin/coder --prefix PATH : ${lib.makeBinPath [ terraform ]} wrapProgram $out/bin/coder --prefix PATH : ${lib.makeBinPath [terraform]}
''; '';
# integration tests require network access # integration tests require network access
@ -76,7 +79,7 @@ stdenvNoCC.mkDerivation rec {
description = "Provision software development environments via Terraform on Linux, macOS, Windows, X86, ARM, and of course, Kubernetes"; description = "Provision software development environments via Terraform on Linux, macOS, Windows, X86, ARM, and of course, Kubernetes";
homepage = "https://coder.com"; homepage = "https://coder.com";
license = lib.licenses.agpl3; license = lib.licenses.agpl3;
maintainers = [ lib.maintainers.ghuntley lib.maintainers.urandom ]; maintainers = [lib.maintainers.ghuntley lib.maintainers.urandom];
broken = false; broken = false;
}; };
} }

View file

@ -1,13 +1,15 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ # Include the results of the hardware scan. pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware.nix ./hardware.nix
]; ];
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = ["nix-command" "flakes"];
boot.tmp.cleanOnBoot = true; boot.tmp.cleanOnBoot = true;
zramSwap.enable = true; zramSwap.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -38,18 +40,18 @@
programs.zsh.enable = true; programs.zsh.enable = true;
programs.fish.enable = true; programs.fish.enable = true;
environment.shells = with pkgs; [ zsh fish ]; environment.shells = with pkgs; [zsh fish];
networking = { networking = {
hostName = "forgejo-action-runner"; hostName = "forgejo-action-runner";
domain = "gmem.ca"; domain = "gmem.ca";
nameservers = [ "1.1.1.1" "1.0.0.1" ]; nameservers = ["1.1.1.1" "1.0.0.1"];
firewall = { firewall = {
trustedInterfaces = ["tailscale0"]; trustedInterfaces = ["tailscale0"];
checkReversePath = "loose"; checkReversePath = "loose";
enable = true; enable = true;
allowedTCPPorts = [ 22 80 443 4328 ]; allowedTCPPorts = [22 80 443 4328];
allowedUDPPorts = [ ]; allowedUDPPorts = [];
}; };
nftables.enable = true; nftables.enable = true;
}; };
@ -60,7 +62,8 @@
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4="; hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4=";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
}; };
virtualisation = { virtualisation = {

View file

@ -1,15 +1,19 @@
{ modulesPath, ... }: {modulesPath, ...}: {
{ imports = [(modulesPath + "/profiles/qemu-guest.nix")];
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.efi.efiSysMountPoint = "/boot/efi"; boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.loader.grub = { boot.loader.grub = {
efiSupport = true; efiSupport = true;
efiInstallAsRemovable = true; efiInstallAsRemovable = true;
device = "nodev"; device = "nodev";
}; };
fileSystems."/boot/efi" = { device = "/dev/disk/by-uuid/CC2E-AEC0"; fsType = "vfat"; }; fileSystems."/boot/efi" = {
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ]; device = "/dev/disk/by-uuid/CC2E-AEC0";
boot.initrd.kernelModules = [ "nvme" ]; fsType = "vfat";
fileSystems."/" = { device = "/dev/mapper/ocivolume-root"; fsType = "xfs"; }; };
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront"];
boot.initrd.kernelModules = ["nvme"];
fileSystems."/" = {
device = "/dev/mapper/ocivolume-root";
fsType = "xfs";
};
} }

View file

@ -1,8 +1,10 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ # Include the results of the hardware scan. pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware.nix ./hardware.nix
]; ];
@ -34,16 +36,22 @@
firewall = { firewall = {
trustedInterfaces = ["tailscale0"]; trustedInterfaces = ["tailscale0"];
checkReversePath = "loose"; checkReversePath = "loose";
allowedTCPPorts = [ 80 443 1935 ]; allowedTCPPorts = [80 443 1935];
allowedUDPPortRanges = [ allowedUDPPortRanges = [
{ from = 4000; to = 4007; } {
{ from = 8000; to = 8010; } from = 4000;
to = 4007;
}
{
from = 8000;
to = 8010;
}
]; ];
allowedUDPPorts = [ 41641 1935 ]; allowedUDPPorts = [41641 1935];
enable = true; enable = true;
}; };
nftables.enable = true; nftables.enable = true;
nameservers = [ "1.1.1.1" "1.0.0.1" ]; nameservers = ["1.1.1.1" "1.0.0.1"];
}; };
time.timeZone = "Europe/London"; time.timeZone = "Europe/London";
@ -53,7 +61,8 @@
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
sha256 = "0vm0q5fzx55mmgw7md430c20rvywmknmpvnkffx9szlm0l74bypc"; sha256 = "0vm0q5fzx55mmgw7md430c20rvywmknmpvnkffx9szlm0l74bypc";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -77,7 +86,7 @@
openFirewall = false; openFirewall = false;
}; };
nginx = { nginx = {
additionalModules = [ pkgs.nginxModules.rtmp ]; additionalModules = [pkgs.nginxModules.rtmp];
enable = true; enable = true;
recommendedProxySettings = true; recommendedProxySettings = true;
recommendedGzipSettings = true; recommendedGzipSettings = true;
@ -93,8 +102,7 @@
proxyPass = "http://127.0.0.1:8080"; proxyPass = "http://127.0.0.1:8080";
proxyWebsockets = true; proxyWebsockets = true;
extraConfig = extraConfig = ''
''
client_max_body_size 100M; client_max_body_size 100M;
proxy_pass_header Authorization; proxy_pass_header Authorization;
''; '';
@ -135,5 +143,4 @@
}; };
system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT? system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT?
} }

View file

@ -1,15 +1,19 @@
{ modulesPath, ... }: {modulesPath, ...}: {
{ imports = [(modulesPath + "/profiles/qemu-guest.nix")];
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.efi.efiSysMountPoint = "/boot/efi"; boot.loader.efi.efiSysMountPoint = "/boot/efi";
boot.loader.grub = { boot.loader.grub = {
efiSupport = true; efiSupport = true;
efiInstallAsRemovable = true; efiInstallAsRemovable = true;
device = "nodev"; device = "nodev";
}; };
fileSystems."/boot/efi" = { device = "/dev/disk/by-uuid/CC2E-AEC0"; fsType = "vfat"; }; fileSystems."/boot/efi" = {
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ]; device = "/dev/disk/by-uuid/CC2E-AEC0";
boot.initrd.kernelModules = [ "nvme" ]; fsType = "vfat";
fileSystems."/" = { device = "/dev/mapper/ocivolume-root"; fsType = "xfs"; }; };
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "xen_blkfront"];
boot.initrd.kernelModules = ["nvme"];
fileSystems."/" = {
device = "/dev/mapper/ocivolume-root";
fsType = "xfs";
};
} }

View file

@ -1,8 +1,10 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ # Include the results of the hardware scan. pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware.nix ./hardware.nix
]; ];
@ -12,19 +14,18 @@
}; };
boot = { boot = {
supportedFilesystems = [ "nfs" ]; supportedFilesystems = ["nfs"];
kernelParams = [ "cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1" ]; kernelParams = ["cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1"];
loader = { loader = {
systemd-boot.enable = true; systemd-boot.enable = true;
efi.canTouchEfiVariables = true; efi.canTouchEfiVariables = true;
}; };
}; };
swapDevices = [ swapDevices = [
{ {
device = "/var/lib/swapfile"; device = "/var/lib/swapfile";
size = 8*1024; size = 8 * 1024;
} }
]; ];
@ -51,8 +52,8 @@
firewall = { firewall = {
trustedInterfaces = ["tailscale0"]; trustedInterfaces = ["tailscale0"];
checkReversePath = "loose"; checkReversePath = "loose";
allowedUDPPorts = [ 41641 ]; allowedUDPPorts = [41641];
allowedTCPPorts = [ 22 80 443 6443 10250 ]; allowedTCPPorts = [22 80 443 6443 10250];
enable = false; enable = false;
}; };
nftables.enable = false; nftables.enable = false;
@ -62,7 +63,7 @@
users.users.gsimmer = { users.users.gsimmer = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = ["wheel"];
packages = with pkgs; [ packages = with pkgs; [
tree tree
]; ];
@ -71,7 +72,8 @@
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4="; hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4=";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
}; };
@ -99,5 +101,4 @@
}; };
system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT? system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT?
} }

View file

@ -1,30 +1,34 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/profiles/qemu-guest.nix") lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
]; ];
boot.initrd.availableKernelModules = [ "uhci_hcd" "ehci_pci" "ahci" "virtio_pci" "sr_mod" "virtio_blk" ]; boot.initrd.availableKernelModules = ["uhci_hcd" "ehci_pci" "ahci" "virtio_pci" "sr_mod" "virtio_blk"];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [];
boot.kernelModules = [ ]; boot.kernelModules = [];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/b6eaa1d7-49dc-44a7-9494-6363939a36ee"; device = "/dev/disk/by-uuid/b6eaa1d7-49dc-44a7-9494-6363939a36ee";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot" = fileSystems."/boot" = {
{ device = "/dev/disk/by-uuid/92BB-B090"; device = "/dev/disk/by-uuid/92BB-B090";
fsType = "vfat"; fsType = "vfat";
}; };
swapDevices = swapDevices = [
[ { device = "/dev/disk/by-uuid/45b1b1cc-7a27-4abc-9903-16d293c8570c"; } {device = "/dev/disk/by-uuid/45b1b1cc-7a27-4abc-9903-16d293c8570c";}
]; ];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking

View file

@ -1,15 +1,17 @@
{ config, pkgs, ... }:
{ {
imports = config,
[ # Include the results of the hardware scan. pkgs,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware.nix ./hardware.nix
]; ];
boot = { boot = {
supportedFilesystems = [ "nfs" ]; supportedFilesystems = ["nfs"];
kernelPackages = pkgs.linuxPackages_rpi4; kernelPackages = pkgs.linuxPackages_rpi4;
kernelParams = [ "cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1" ]; kernelParams = ["cgroup_enable=memory" "cgroup_enable=cpuset" "cgroup_memory=1"];
loader = { loader = {
grub.enable = false; grub.enable = false;
generic-extlinux-compatible.enable = true; generic-extlinux-compatible.enable = true;
@ -19,7 +21,7 @@
swapDevices = [ swapDevices = [
{ {
device = "/var/lib/swapfile"; device = "/var/lib/swapfile";
size = 8*1024; size = 8 * 1024;
} }
]; ];
@ -46,8 +48,8 @@
firewall = { firewall = {
trustedInterfaces = ["tailscale0"]; trustedInterfaces = ["tailscale0"];
checkReversePath = "loose"; checkReversePath = "loose";
allowedTCPPorts = [ 22 80 443 6443 10250 ]; allowedTCPPorts = [22 80 443 6443 10250];
allowedUDPPorts = [ 41641 80 443 ]; allowedUDPPorts = [41641 80 443];
enable = false; enable = false;
}; };
nftables.enable = false; nftables.enable = false;
@ -57,7 +59,7 @@
users.users.gsimmer = { users.users.gsimmer = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" ]; extraGroups = ["wheel"];
packages = with pkgs; [ packages = with pkgs; [
tree tree
]; ];
@ -66,7 +68,8 @@
url = "https://gmem.ca/ssh"; url = "https://gmem.ca/ssh";
hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4="; hash = "sha256-7PpFDgWVfp26c9PuW+2s3O8MBAODtHr4q7WU/l3BoG4=";
}; };
in pkgs.lib.splitString "\n" (builtins.readFile in
pkgs.lib.splitString "\n" (builtins.readFile
authorizedKeys); authorizedKeys);
}; };
@ -103,5 +106,4 @@
}; };
system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT? system.stateVersion = "23.11"; # dId YoU rEaD tHe CoMmEnT?
} }

View file

@ -1,24 +1,28 @@
# Do not modify this file! It was generated by nixos-generate-config # Do not modify this file! It was generated by nixos-generate-config
# and may be overwritten by future invocations. Please make changes # and may be overwritten by future invocations. Please make changes
# to /etc/nixos/configuration.nix instead. # to /etc/nixos/configuration.nix instead.
{ config, lib, pkgs, modulesPath, ... }:
{ {
imports = config,
[ (modulesPath + "/installer/scan/not-detected.nix") lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "xhci_pci" "uas" ]; boot.initrd.availableKernelModules = ["xhci_pci" "uas"];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [];
boot.kernelModules = [ ]; boot.kernelModules = [];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [];
fileSystems."/" = fileSystems."/" = {
{ device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4"; fsType = "ext4";
}; };
swapDevices = [ ]; swapDevices = [];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking # Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's # (the default) this is the recommended approach. When using systemd-networkd it's

View file

@ -1,9 +1,13 @@
{ lib, pkgs, ... }: { {
lib,
pkgs,
...
}: {
users.users.root.openssh.authorizedKeys.keys = [ users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIztwQxt+jqroFONSgq+xzPMuE2I5Dq/zWPQ8RcTYJr gabriel@gitgalaxy.com" "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIztwQxt+jqroFONSgq+xzPMuE2I5Dq/zWPQ8RcTYJr gabriel@gitgalaxy.com"
]; ];
sdImage.compressImage = false; sdImage.compressImage = false;
systemd.services.openssh.wantedBy = lib.mkOverride 40 [ "multi-user.target" ]; systemd.services.openssh.wantedBy = lib.mkOverride 40 ["multi-user.target"];
services.openssh.enable = true; services.openssh.enable = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [

View file

@ -1,28 +1,27 @@
let let
vancouver = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC30kDkktiWJGaJEIrqgneQx1SmIYUEVPm7w1F9p//CB"; vancouver = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIC30kDkktiWJGaJEIrqgneQx1SmIYUEVPm7w1F9p//CB";
monitoring = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEDtzsbxKgZ/NBYlYO2EJQZhBy3nVBVERWebbsP9mLcy"; monitoring = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEDtzsbxKgZ/NBYlYO2EJQZhBy3nVBVERWebbsP9mLcy";
machines = [ vancouver monitoring ]; machines = [vancouver monitoring];
proxmox-k3s-node = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1KEjdFl0UmuKfESJTMZdKR2H9a405z0SSlt75NKKht"; proxmox-k3s-node = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB1KEjdFl0UmuKfESJTMZdKR2H9a405z0SSlt75NKKht";
seattle = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF9pTEqeVljLq0ctFgDn25Q76mCqpddkSNN9kd3IQXd1"; seattle = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIF9pTEqeVljLq0ctFgDn25Q76mCqpddkSNN9kd3IQXd1";
glasgow = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMgZSpfnx/4kfE4P1tFpq047IZkF2Q0UYahputnWxtEJ"; glasgow = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIMgZSpfnx/4kfE4P1tFpq047IZkF2Q0UYahputnWxtEJ";
k3s = [ proxmox-k3s-node seattle glasgow ]; k3s = [proxmox-k3s-node seattle glasgow];
gsimmer = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIztwQxt+jqroFONSgq+xzPMuE2I5Dq/zWPQ8RcTYJr gabriel@gitgalaxy.com"; gsimmer = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIztwQxt+jqroFONSgq+xzPMuE2I5Dq/zWPQ8RcTYJr gabriel@gitgalaxy.com";
users = [ gsimmer ]; users = [gsimmer];
in in {
{ "secrets/vancouver-action-runner.age".publicKeys = [vancouver gsimmer];
"secrets/vancouver-action-runner.age".publicKeys = [ vancouver gsimmer ]; "secrets/vancouver-restic-b2.age".publicKeys = [vancouver gsimmer];
"secrets/vancouver-restic-b2.age".publicKeys = [ vancouver gsimmer ]; "secrets/vancouver-restic-password.age".publicKeys = [vancouver gsimmer];
"secrets/vancouver-restic-password.age".publicKeys = [ vancouver gsimmer ]; "secrets/monitoring-healthchecks-secret.age".publicKeys = [monitoring gsimmer];
"secrets/monitoring-healthchecks-secret.age".publicKeys = [ monitoring gsimmer ]; "secrets/monitoring-healthchecks-ro.age".publicKeys = [monitoring gsimmer];
"secrets/monitoring-healthchecks-ro.age".publicKeys = [ monitoring gsimmer ]; "secrets/monitoring-prometheus-webconfig.age".publicKeys = [monitoring gsimmer];
"secrets/monitoring-prometheus-webconfig.age".publicKeys = [ monitoring gsimmer ]; "secrets/monitoring-prometheus-password.age".publicKeys = [monitoring gsimmer];
"secrets/monitoring-prometheus-password.age".publicKeys = [ monitoring gsimmer ];
"secrets/healthchecks-ping.sh.age".publicKeys = machines ++ users; "secrets/healthchecks-ping.sh.age".publicKeys = machines ++ users;
"secrets/fastmail-smtp.age".publicKeys = machines ++ users; "secrets/fastmail-smtp.age".publicKeys = machines ++ users;
"secrets/healthchecks-telegram.age".publicKeys = [ monitoring gsimmer ]; "secrets/healthchecks-telegram.age".publicKeys = [monitoring gsimmer];
"secrets/cloudflare-dns.age".publicKeys = machines ++ users; "secrets/cloudflare-dns.age".publicKeys = machines ++ users;
"secrets/monitoring-grafana-client-secret.age".publicKeys = [monitoring gsimmer ]; "secrets/monitoring-grafana-client-secret.age".publicKeys = [monitoring gsimmer];
"secrets/k3s-token.age".publicKeys = k3s ++ users; "secrets/k3s-token.age".publicKeys = k3s ++ users;
} }

View file

@ -1,4 +1,4 @@
{ ... }: { {...}: {
terraform = { terraform = {
required_providers = { required_providers = {
cloudflare.source = "cloudflare/cloudflare"; cloudflare.source = "cloudflare/cloudflare";