9 Commits

Author SHA1 Message Date
javalsai e2c359b2c8 docs: add sections and fix typos/errors 2026-05-04 02:01:13 +02:00
ErrorNoInternet 717e23efa3 treewide: initialize npins 2026-05-04 02:01:13 +02:00
ErrorNoInternet c0ee94dd43 treewide: refactor code 2026-05-04 02:01:13 +02:00
javalsai cb67598c41 nixos/security: add acme through dns challenge
few side refactors of this:
- no more `dns.domain`, it all must rely on `fqdn`, prevents
  inconsistencies.
- also added an specific host `tuxcord-acmetest` that uses the key zone
  for `nix.tuxcord.net` to test certificate pulling.
2026-05-04 02:01:13 +02:00
javalsai 0cd381a41c docs: document installation, secrets and setup steps
Check / Nix flake (push) Failing after 10s
Lint / Nix expressions (push) Failing after 11s
2026-05-04 01:59:47 +02:00
javalsai 3f1ef7052e nixos/services: make dns configuration easier 2026-05-04 01:59:47 +02:00
javalsai e83b3bae26 nixos/service: add dns (bind named server) 2026-05-04 01:59:47 +02:00
javalsai 744921de6e nixos/programs: add bind utils 2026-05-04 01:59:47 +02:00
javalsai 0b55eff920 lib/ssh: add more ssh keys 2026-05-04 01:59:44 +02:00
+8
View File
@@ -10,6 +10,14 @@
PermitRootLogin = "no"; PermitRootLogin = "no";
}; };
}; };
<<<<<<< HEAD
networking.firewall.allowedTCPPorts = [ 22 ]; networking.firewall.allowedTCPPorts = [ 22 ];
||||||| parent of 1c2f11d (lib/ssh: add more ssh keys)
users.users.root.openssh.authorizedKeys.keys = builtins.attrValues {
inherit (import "${self}/lib/ssh/keys.nix") error javalsai;
};
=======
>>>>>>> 1c2f11d (lib/ssh: add more ssh keys)
} }