nix-cfg/hosts/vps1/configuration.nix

54 lines
1.2 KiB
Nix
Raw Normal View History

{ pkgs, ... }: {
imports = [
./hardware-configuration.nix
];
programs.fish.enable = true;
nix.settings.experimental-features = [ "nix-command" "flakes" ];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "lgm-vps1";
networking.domain = "contaboserver.net";
networking.firewall.allowedTCPPorts = [ 80 443 ];
services.openssh = {
enable = true;
ports = [ 37163 ];
settings.PermitRootLogin = "no";
settings.PasswordAuthentication = false;
};
services.endlessh-go = {
enable = true;
openFirewall = true;
port = 22;
};
2024-01-14 20:54:43 +01:00
services.nginx = {
enable = true;
virtualHosts."gtnh.lgm.6dcdb488.nip.io" = {
root = "/var/www/gtnh";
};
};
programs.mosh.enable = true;
2024-01-13 20:00:05 +01:00
environment.systemPackages = with pkgs; [
git
vim
];
users.users.lgm = {
isNormalUser = true;
description = "lgm";
2024-01-13 20:00:05 +01:00
extraGroups = [ "wheel""docker"];
shell = pkgs.fish;
2024-01-14 20:54:43 +01:00
openssh.authorizedKeys.keys = [''sk-ssh-ed25519@openssh.com AAAAGnNrLXNzaC1lZDI1NTE5QG9wZW5zc2guY29tAAAAIHFPA2RhqZIVCLwYuEUDQyOnJ4g1R6IfQyhGqZ2Cvvu+AAAABHNzaDo= lgm@lgm-nixos''];
};
system.stateVersion = "23.11";
}