11 Commits

Author SHA1 Message Date
ErrorNoInternet 0dd5e51f41 nixos/networking: fix extraHosts generation
Check / Nix flake (push) Failing after 9s
Lint / Nix expressions (push) Failing after 10s
2026-05-04 01:26:28 -04:00
ErrorNoInternet 06e685d0b1 npins: update website 2026-05-04 01:26:28 -04:00
ErrorNoInternet 20219d60d4 nixos/hosts: declare fileSystems for testing hosts 2026-05-04 01:26:28 -04:00
ErrorNoInternet ee82325b6e nixos/services/openssh: enable X11 forwarding 2026-05-04 01:26:28 -04:00
javalsai b8bc3edbff nixos/hosts: add autologin for testing hosts 2026-05-04 01:26:28 -04:00
javalsai 427a905799 nixos/services: add default website on nginx 2026-05-04 01:26:28 -04:00
javalsai b597977b8a nixos/services: disable nginx proxy buffering 2026-05-04 01:26:28 -04:00
ErrorNoInternet 16bcec48f8 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 01:26:28 -04:00
ErrorNoInternet 9c2bee177c shells: remove neovim
Some users may be using self-contained Neovim executables.
2026-05-04 01:26:27 -04:00
ErrorNoInternet 84199dd8eb agenix: import initial user dns keys 2026-05-04 01:26:27 -04:00
ErrorNoInternet 1c502afbcd treewide: create global user list 2026-05-04 01:26:27 -04:00
+4 -4
View File
@@ -1,11 +1,11 @@
rec {
toList = x: if builtins.isList x then x else [ x ];
nameValuePair = name: value: { inherit name value; };
attrsToList = mapAttrsToList nameValuePair;
mapAttrsToList = f: attrs: builtins.attrValues (builtins.mapAttrs f attrs);
attrsToList = mapAttrsToList nameValuePair;
nameValuePair = name: value: { inherit name value; };
toList = x: if builtins.isList x then x else [ x ];
getSSHKeys =
username: