11 Commits

Author SHA1 Message Date
ErrorNoInternet 8381c18ebd nixos/networking: fix extraHosts generation
Check / Nix flake (push) Failing after 9s
Lint / Nix expressions (push) Failing after 10s
2026-05-04 01:10:47 -04:00
ErrorNoInternet b32e506f54 npins: update website
Check / Nix flake (push) Failing after 9s
Lint / Nix expressions (push) Failing after 11s
2026-05-04 00:45:23 -04:00
ErrorNoInternet 91733ce19f nixos/hosts: declare fileSystems for testing hosts 2026-05-04 00:45:23 -04:00
ErrorNoInternet bb97397e6b nixos/services/openssh: enable X11 forwarding 2026-05-04 00:45:22 -04:00
javalsai a02d935fd0 nixos/hosts: add autologin for testing hosts 2026-05-04 00:45:22 -04:00
javalsai 62b9a39599 nixos/services: add default website on nginx 2026-05-04 00:45:22 -04:00
javalsai ee17ef91ed nixos/services: disable nginx proxy buffering 2026-05-04 00:45:22 -04:00
ErrorNoInternet a2065702a4 nixos/impermanence: remove ssh host key persistence
The SSH host key files are already defined in the OpenSSH module, so
there is no need to persist them with impermanence.nix.
2026-05-04 00:45:22 -04:00
ErrorNoInternet 869fc59c6f shells: remove neovim
Some users may be using self-contained Neovim executables.
2026-05-04 00:45:22 -04:00
ErrorNoInternet 8824b565ba agenix: import initial user dns keys 2026-05-04 00:45:22 -04:00
ErrorNoInternet 9b7453b0b4 treewide: create global user list 2026-05-04 00:45:22 -04:00
+1 -1
View File
@@ -17,5 +17,5 @@ rec {
if (builtins.hasAttr "ssh" users.${username}) then if (builtins.hasAttr "ssh" users.${username}) then
toList users.${username}.ssh toList users.${username}.ssh
else else
builtins.warn "user ${username} declared without ssh keys" [ ]; builtins.warn "user ${username} declared without ssh key" [ ];
} }