Compare commits

..

2 Commits

Author SHA1 Message Date
stupidcomputer e28e53b6db changes 2024-01-24 23:42:18 -06:00
stupidcomputer 22a282ea97 add python 3 so sshuttle can work 2024-01-21 12:55:01 -06:00
1 changed files with 4 additions and 2 deletions

View File

@ -127,6 +127,7 @@ in {
};
environment.systemPackages = with pkgs; [
python3
curl
htop
git
@ -248,7 +249,8 @@ in {
users.users.ryan = {
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKbhM3wj0oqjR3pUaZgpfX4Xo4dlzvBTbQ48zHyg7Pwx usr"
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIKbhM3wj0oqjR3pUaZgpfX4Xo4dlzvBTbQ48zHyg7Pwx usr" # x230t
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGrpVDLQszFKoYbvYKRyVTTpehxR0BVU47SXkz39l2wK usr" # mainsail
];
isNormalUser = true;
extraGroups = [ "wheel" "docker" ];