❄️ Dotfiles and NixOS configurations
0
fork

Configure Feed

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

at main 16 lines 513 B view raw
1{pkgs, ...}: { 2 users.knownUsers = ["bob-the-builder"]; 3 users.users.bob-the-builder = { 4 uid = 502; 5 createHome = true; 6 home = "/Users/bob-the-builder"; 7 shell = pkgs.bashInteractive; 8 openssh.authorizedKeys.keys = [ 9 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIP0NTTsagVihqSLWR9gHcH6cWkADIQdI1YKEuogq71Gw" 10 # getchoo 11 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINpB6mzzsR0vHR/pZ6a60mvMhJS4d0d1TzezbUetXz3i seth@macstadium" 12 ]; 13 }; 14 15 nix.settings.trusted-users = ["bob-the-builder"]; 16}