11 Commits

Author SHA1 Message Date
ErrorNoInternet aa312f8547 nixos/networking: fix extraHosts generation
Check / Nix flake (push) Failing after 9s
Lint / Nix expressions (push) Failing after 11s
2026-05-04 01:27:11 -04:00
ErrorNoInternet dc285cab4e npins: update website 2026-05-04 01:27:11 -04:00
ErrorNoInternet 7030e812fc nixos/hosts: declare fileSystems for testing hosts 2026-05-04 01:27:11 -04:00
ErrorNoInternet 002e0074c8 nixos/services/openssh: enable X11 forwarding 2026-05-04 01:27:11 -04:00
javalsai 3988a6e071 nixos/hosts: add autologin for testing hosts 2026-05-04 01:27:11 -04:00
javalsai b78c41a5f7 nixos/services: add default website on nginx 2026-05-04 01:27:11 -04:00
javalsai e1f2dc3161 nixos/services: disable nginx proxy buffering 2026-05-04 01:27:11 -04:00
ErrorNoInternet f1c5f038ec 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:27:10 -04:00
ErrorNoInternet ae0d4f5958 shells: remove neovim
Some users may be using self-contained Neovim executables.
2026-05-04 01:27:10 -04:00
ErrorNoInternet ded0374c57 agenix: import initial user dns keys 2026-05-04 01:27:10 -04:00
ErrorNoInternet ab0f9a2ff2 treewide: create global user list 2026-05-04 01:27:10 -04:00
+4 -4
View File
@@ -1,11 +1,11 @@
rec {
attrsToList = mapAttrsToList nameValuePair;
mapAttrsToList = f: attrs: builtins.attrValues (builtins.mapAttrs f attrs);
toList = x: if builtins.isList x then x else [ x ];
nameValuePair = name: value: { inherit name value; };
toList = x: if builtins.isList x then x else [ x ];
mapAttrsToList = f: attrs: builtins.attrValues (builtins.mapAttrs f attrs);
attrsToList = mapAttrsToList nameValuePair;
getSSHKeys =
username: