Personal-use NixOS configuration
0
fork

Configure Feed

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

Configure my SSH key for index

encode42 5054f06b ffd95cbd

+12 -6
+12 -6
hosts/index/users/encode42.nix
··· 16 16 home.stateVersion = "25.05"; 17 17 }; 18 18 19 - users.users.encode42.extraGroups = [ 20 - "wheel" 21 - "cdrom" 22 - "optical" 19 + users.users.encode42 = { 20 + openssh.authorizedKeys.keys = [ 21 + "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM0jCVfIbVcgHOoDC8aUHDwUJu2mEqzvnqz3+9IeLhBO" 22 + ]; 23 23 24 - "media" 25 - ]; 24 + extraGroups = [ 25 + "wheel" 26 + "cdrom" 27 + "optical" 28 + 29 + "media" 30 + ]; 31 + }; 26 32 }