blob: c06c77b63edc752fbb00b15b489f8de3c5dce509 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{ ... }:
{
imports = [
./hardware-configuration.nix
];
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "my-vps";
networking.domain = "";
users.users.administrator = {
isNormalUser = true;
password = "admin";
extraGroups = [ "wheel" ];
};
services.openssh = {
enable = true;
ports = [ 88693 ];
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
PermitRootLogin = "yes";
};
};
services.nginx = {
enable = true;
virtualHosts."schererleander.de" = {
root = "/var/www/site";
};
};
networking.firewall.allowedTCPPorts = [ 88693 ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
system.stateVersion = "25.05";
}
|