blob: 285ae4007401ecdf5fe06fe9018c534b10c3a6db (
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
42
43
44
45
|
{ config, pkgs, ... }:
{
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" ];
};
environment.systemPackages = with pkgs; [
git
];
services.openssh = {
enable = true;
ports = [ 8693 ];
settings = {
PasswordAuthentication = false;
X11Forwarding = false;
PermitRootLogin = "yes";
};
};
services.nginx = {
enable = true;
virtualHosts."schererleander.de" = {
root = "/var/www/site";
};
};
networking.firewall.allowedTCPPorts = [ 8693 ];
nix.settings.experimental-features = [ "nix-command" "flakes" ];
nixpkgs.config.allowUnfree = true;
system.stateVersion = "25.05";
}
|