Hybrid cloud cluster monorepo with Ansible, K8s, NixOS, and Terraform. cute.haus
ansible terraform nix k8s
1

Configure Feed

Select the types of activity you want to include in your feed.

nix: fix ssh keys

Aly Raffauf (Jun 10, 2026, 11:40 PM EDT) 45863194 2a6f98fa

+2 -3
+2 -3
nix/nixos/ssh-keys.nix
··· 19 19 20 20 authorizedUsers = lib.mkOption { 21 21 type = lib.types.attrsOf (lib.types.listOf lib.types.str); 22 - default = { 23 - root = ["aly"]; 24 - }; 22 + default = {}; 25 23 }; 26 24 }; 27 25 28 26 config = lib.mkMerge [ 29 27 { 28 + mySshKeys.authorizedUsers.root = lib.mkDefault ["aly"]; 30 29 users.users.root.openssh.authorizedKeys.keyFiles = filesFor (config.mySshKeys.authorizedUsers.root or []); 31 30 } 32 31 (lib.mkIf (config.mySshKeys.authorizedUsers ? aly) {