blob: 16111b3717fa6d3daa6e476c2777d47e182c0b8c (
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
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
{ config, pkgs, ... }:
let
nvim = (import (pkgs.fetchzip {
url = "https://github.com/nixos/nixpkgs/archive/517c29935b6e4dec12571e7d101e2b0da220263d.zip";
sha256 = "1s85sz62iykvca90d3cgd981670rnkd5c171wda7wpwdj0d52sf3";
}) { }).neovim.override {
vimAlias = true;
};
in
{
imports =
[
#./hardware-configuration.nix
./cgit.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda"; # or "nodev" for efi only
networking.hostName = "srv1";
time.timeZone = "Europe/Warsaw";
i18n.defaultLocale = "en_US.UTF-8"; # Less confusing locale than polish one
console.keyMap = "pl";
nix.gc = {
automatic = true;
options = "--delete-older-than 30d";
};
nix.optimise.automatic = true;
nix.trustedUsers = [ "pn" ];
system.autoUpgrade = {
enable = true;
allowReboot = true;
};
# The global useDHCP flag is deprecated, therefore explicitly set to false here.
# Per-interface useDHCP will be mandatory in the future, so this generated config
# replicates the default behaviour.
networking.useDHCP = false;
networking.interfaces.enp4s0.useDHCP = true;
# Configure network proxy if necessary
# networking.proxy.default = "http://user:password@proxy:port/";
# networking.proxy.noProxy = "127.0.0.1,localhost,internal.domain";
# Select internationalisation properties.
# i18n.defaultLocale = "en_US.UTF-8";
# console = {
# font = "Lat2-Terminus16";
# keyMap = "us";
# };
environment.systemPackages = with pkgs; [
curl wget htop git
nvim lm_sensors
];
services.openssh.enable = true;
services.openssh.passwordAuthentication = false;
services.sshguard.enable = true;
services.nginx.enable = true;
services.nginx.virtualHosts."srv1.niedzwiedzinski.cyou" = {
enableACME = true;
forceSSL = true;
root = "/var/www/srv1.niedzwiedzinski.cyou";
};
services.nginx.virtualHosts."pics.srv1.niedzwiedzinski.cyou" = {
enableACME = true;
forceSSL = true;
root = "/var/www/pics.srv1.niedzwiedzinski.cyou";
};
services.nginx.virtualHosts."git.niedzwiedzinski.cyou" = {
locations."/".proxyPass = "http://localhost:8080/cgit/";
locations."/cgit/".proxyPass = "http://localhost:8080";
enableACME = true;
forceSSL = true;
};
security.acme.email = "pniedzwiedzinski19@gmail.com";
security.acme.acceptTerms = true;
networking.firewall.allowedTCPPorts = [ 80 443 ];
# networking.firewall.allowedUDPPorts = [ ... ];
services.molly-brown = {
#hostName = "srv1.niedzwiedzinski.cyou";
#enable = true;
};
systemd = {
services.git-fetch = {
script = ''
cd /srv/git
for f in `ls -I git-shell-commands`; do
cd $f
${pkgs.git}/bin/git fetch
cd ..
done
'';
serviceConfig = {
Type = "oneshot";
};
};
timers.git-fetch = {
partOf = [ "git-fetch.service" ];
wantedBy = ["timers.target" ];
timerConfig = {
OnCalendar = "hourly";
Unit = "git-fetch.service";
};
};
};
services.lighttpd = {
enable = true;
port = 8080;
pn-cgit = {
logo = "${./baby-yoda.png.comp}";
enable = true;
configText = ''
# source-filter=${pkgs.cgit}/lib/cgit/filters/syntax-highlighting.sh
about-filter=${pkgs.cgit}/lib/cgit/filters/about-formatting.sh
cache-size=1000
root-title=git.niedzwiedzinski.cyou
root-desc=Personal git server, because I can
scan-path=/srv/git/
virtual-root=/
readme=:README.md
readme=:README.rst
readme=:README.txt
readme=:README
'';
};
};
users.users.pn = {
isNormalUser = true;
extraGroups = [ "wheel" ]; # Enable ‘sudo’ for the user.
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIqlCe4ovKa/Gwl5xmgu9nvVPmFXMgwdeLRYW7Gg7RWx pniedzwiedzinski19@gmail.com"
];
};
users.users.git = {
isSystemUser = true;
description = "git user";
home = "/srv/git";
shell = "${pkgs.git}/bin/git-shell";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIqlCe4ovKa/Gwl5xmgu9nvVPmFXMgwdeLRYW7Gg7RWx pniedzwiedzinski19@gmail.com"
];
};
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. It‘s perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "20.09"; # Did you read the comment?
}
|