infra/pi-imgs/pi-initial.nix

21 lines
505 B
Nix
Raw Normal View History

2023-06-26 15:27:31 +01:00
{ lib, pkgs, ... }: {
users.users.root.openssh.authorizedKeys.keys = [
2023-09-05 17:14:14 +01:00
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILIztwQxt+jqroFONSgq+xzPMuE2I5Dq/zWPQ8RcTYJr gabriel@gitgalaxy.com"
2023-06-26 15:27:31 +01:00
];
sdImage.compressImage = false;
systemd.services.openssh.wantedBy = lib.mkOverride 40 [ "multi-user.target" ];
services.openssh.enable = true;
environment.systemPackages = with pkgs; [
vim
wget
htop
git
screen
nix-output-monitor
tailscale
];
2023-08-05 12:02:26 +01:00
system.stateVersion = "23.05";
2023-06-26 15:27:31 +01:00
}