1
0
Fork 0
mirror of https://git.sr.ht/~roxwize/.dotfiles synced 2025-04-03 18:14:15 +00:00
.dotfiles/nixos/hosts/near/configuration.nix
2025-03-03 23:55:20 -05:00

38 lines
775 B
Nix

{ inputs, ... }: {
imports = [
inputs.raspberry-pi-nix.nixosModules.raspberry-pi
inputs.raspberry-pi-nix.nixosModules.sd-image
./hardware-configuration.nix
../base.nix
../../docker
];
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPyZFWvrboUTM/dKzz5kQHEKjNqI410VJUGiVckhjOve rae@ioides"
];
programs.git.enable = true;
virtualisation.docker.enable = true;
containers = {
homepage.enable = true;
};
services = {
openssh = {
ports = [ 22 ];
banner = "I won't hold it against you";
settings = {
PasswordAuthentication = true;
};
};
};
networking = {
hostName = "near";
firewall.allowedTCPPorts = [ 22 8082 ];
};
time.timeZone = "America/New_York";
system.stateVersion = "24.11";
}