Compare commits

..

4 Commits

Author SHA1 Message Date
Yves Dubromelle
c0832c7ccb munin: augmentation du lelais de timeout pour le démarrage du daemon 2017-01-22 19:07:16 +01:00
Yves Dubromelle
10a42e4cbd monstre est un serveur nix 2017-01-22 00:00:38 +01:00
Yves Dubromelle
f0627eb800 nix-serve est disponible uniquement par tinc 2017-01-21 23:57:51 +01:00
Yves Dubromelle
ae4c1edee0 prise en compte du fichier jetbrains 2017-01-21 16:35:22 +01:00
4 changed files with 8 additions and 1 deletions

View File

@@ -19,9 +19,13 @@ mkIf cfg.nix-serve-server {
# Réseau # Réseau
networking.firewall = { networking.firewall = {
allowedTCPPorts = [ allowedTCPPorts = [
5000 #5000 # ouvert sur tinc
]; ];
allowedUDPPorts = [ allowedUDPPorts = [
]; ];
extraCommands = ''
iptables -A INPUT -i tinc.grudunet -p tcp --dport 5000 -j ACCEPT
ip6tables -A INPUT -i tinc.grudunet -p tcp --dport 5000 -j ACCEPT
'';
}; };
} }

View File

@@ -272,6 +272,7 @@ in
fail2ban = true; fail2ban = true;
murmur = true; murmur = true;
nix-serve-client = true; nix-serve-client = true;
nix-serve-server = true;
nixStoreProxyCache = true; nixStoreProxyCache = true;
tincAddress = "192.168.12.4/24"; tincAddress = "192.168.12.4/24";
tincExtraConfig = '' tincExtraConfig = ''

View File

@@ -28,6 +28,7 @@ in
./app-developpement.nix # développer des programmes/scripts ./app-developpement.nix # développer des programmes/scripts
./app-developpement-haskell.nix # développer en haskell ./app-developpement-haskell.nix # développer en haskell
./app-developpement-java.nix # développer en java ./app-developpement-java.nix # développer en java
./app-developpement-jetbrains.nix # outils jetbrains
./app-developpement-rust.nix # développer en rust ./app-developpement-rust.nix # développer en rust
./app-docker.nix # activer docker ./app-docker.nix # activer docker
./app-edition-musique.nix # modifier les fichiers musicaux ./app-edition-musique.nix # modifier les fichiers musicaux

View File

@@ -20,6 +20,7 @@ mkIf true {
services.munin-node = { services.munin-node = {
enable = true; enable = true;
}; };
systemd.services.munin-node.serviceConfig.TimeoutStartSec = "3min";
## Munin server -- generate /var/www/munin ## Munin server -- generate /var/www/munin
services.munin-cron = { services.munin-cron = {