fix website

This commit is contained in:
2026-04-23 20:21:38 -05:00
parent 47c9437df7
commit 1e3cf30292
3 changed files with 18 additions and 10 deletions

View File

@@ -8,7 +8,7 @@ http:
rule: "Host(`esotericbytes.com`) || Host(`www.esotericbytes.com`)"
service: "homepage"
middlewares:
- authentik
- authentik@docker
tls:
certResolver: "cloudflare"

View File

@@ -1,11 +1,19 @@
{ inputs, ... }: {
{ self, inputs, ... }: {
flake.nixosModules.pi4 = { config, pkgs, ... }: {
imports = [
imports = with self.nixosModules; [
inputs.disko.nixosModules.default
inputs.home-manager.nixosModules.default
self.nixosModules.default
user-nathan
netbird
avahi
openssh
remoteBuilds
sops
];
config = {
@@ -77,11 +85,9 @@
fonts.packages = with pkgs; [ nerd-fonts.fira-code ];
sound.enable = true;
security.rtkit.enable = true;
system.stateVersion = "25.05";
system.stateVersion = "25.11";
};
};
}

View File

@@ -4,6 +4,8 @@
laptop = [ "laptop" ];
homebox = [ "homebox" ];
iso = [ "iso" ];
#pi4 = [ "pi4" ];
#z2w = [ "red-black" "blue-white" ];
useWith = x: y: (lib.mkIf (builtins.any (z: z == config.networking.hostName) x) y);
in {