❄️ Dotfiles for our NixOS system configuration.
1{ pkgs, ... }: 2 3{ 4 users.users = { 5 chloe = { 6 isNormalUser = true; 7 8 extraGroups = [ 9 "networkmanager" 10 "wheel" 11 ]; 12 13 shell = pkgs.zsh; 14 15 openssh.authorizedKeys.keys = [ 16 "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEJOAijXc0QNfeoCsQkaB7ybm9G+4EpFthOGy+fy+YbT" 17 ]; 18 }; 19 }; 20}