blob: c7f41b95aa0cd48a31dbf9a3c5a76fa06444f08f (
plain) (
blame)
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
|
# VPS hosted at GleSYS, running my Quassel and some random network
# stuff.
_: # ignore readTree options
{ config, depot, lib, pkgs, ... }:
let
mod = name: depot.path.origSrc + ("/ops/modules/" + name);
usermod = name: depot.path.origSrc + ("/users/tazjin/nixos/modules/" + name);
in
{
imports = [
(mod "quassel.nix")
(mod "www/base.nix")
(usermod "tgsa.nix")
(usermod "predlozhnik.nix")
];
# Use the GRUB 2 boot loader.
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
boot.initrd.availableKernelModules = [ "ata_piix" "vmw_pvscsi" "sd_mod" "sr_mod" ];
# Adjust to disk size increases
boot.growPartition = true;
virtualisation.vmware.guest.enable = true;
virtualisation.vmware.guest.headless = true;
nix.settings.trusted-users = [ "tazjin" ];
fileSystems."/" =
{
device = "/dev/disk/by-uuid/4c51357a-1e34-4b59-b169-63af1fcdce71";
fsType = "ext4";
};
networking = {
hostName = "polyanka";
domain = "tazj.in";
useDHCP = false;
# Required for VPN usage
networkmanager.enable = true;
interfaces.ens192 = {
ipv4.addresses = lib.singleton {
address = "159.253.30.129";
prefixLength = 24;
};
ipv6.addresses = lib.singleton {
address = "2a02:750:7:3305::308";
prefixLength = 64;
};
};
defaultGateway = "159.253.30.1";
defaultGateway6.address = "2a02:750:7:3305::1";
firewall.enable = true;
firewall.allowedTCPPorts = [ 22 80 443 ];
nameservers = [
"79.99.4.100"
"79.99.4.101"
"2a02:751:aaaa::1"
"2a02:751:aaaa::2"
];
};
time.timeZone = "UTC";
security.acme.acceptTerms = true;
security.acme.certs."polyanka.tazj.in" = {
listenHTTP = ":80";
email = "mail@tazj.in";
group = "quassel";
};
programs.fish.enable = true;
users.users.tazjin = {
isNormalUser = true;
extraGroups = [ "wheel" ];
shell = pkgs.fish;
openssh.authorizedKeys.keys = depot.users.tazjin.keys.all;
};
security.sudo.wheelNeedsPassword = false;
services.depot.quassel = {
enable = true;
acmeHost = "polyanka.tazj.in";
bindAddresses = [
"0.0.0.0"
];
};
# Automatically collect garbage from the Nix store.
services.depot.automatic-gc = {
enable = true;
interval = "daily";
diskThreshold = 2; # GiB
maxFreed = 8; # GiB
preserveGenerations = "14d";
};
# List packages installed in system profile. To search, run:
# $ nix search wget
environment.systemPackages = with pkgs; [
curl
htop
jq
nmap
bat
emacs-nox
nano
wget
];
programs.mtr.enable = true;
programs.mosh.enable = true;
services.openssh.enable = true;
services.tailscale.enable = true;
boot.kernel.sysctl = {
"net.ipv4.ip_forward" = 1;
"net.ipv6.conf.all.forwarding" = 1;
};
system.stateVersion = "20.09";
}
|