X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=modules%2Fprivate%2Fsystem%2Fdilion.nix;h=a0d56cc355769d77d69db14c642aca714c893803;hb=6c95e93c85640e1fe544ed1b6a0b83e27725d0f0;hp=379117c740025efdb8bedc3ac1982716182eef85;hpb=38ac9a5749743a95d27a5231d05eb93c2340e6bc;p=perso%2FImmae%2FConfig%2FNix.git diff --git a/modules/private/system/dilion.nix b/modules/private/system/dilion.nix index 379117c..a0d56cc 100644 --- a/modules/private/system/dilion.nix +++ b/modules/private/system/dilion.nix @@ -1,5 +1,5 @@ { privateFiles }: -{ config, pkgs, name, ... }: +{ config, pkgs, name, lib, ... }: { boot.supportedFilesystems = [ "zfs" ]; boot.kernelPackages = pkgs.linuxPackages_latest; @@ -41,6 +41,8 @@ }; }; + system.nssModules = [ pkgs.libvirt ]; + system.nssHosts = lib.mkForce [ "files" "libvirt_guest" "mymachines" "dns" "myhostname" ]; programs.zsh.enable = true; users.users.backup = { @@ -76,12 +78,24 @@ install -m 0750 -o backup -g root -d /var/lib/backup/eldiron ''; + system.activationScripts.libvirtd_exports = '' + install -m 0755 -o root -g root -d /var/lib/caldance + ''; virtualisation.docker.enable = true; virtualisation.libvirtd.enable = true; users.extraUsers.immae.extraGroups = [ "libvirtd" "docker" ]; systemd.services.libvirtd.postStart = '' install -m 0770 -g libvirtd -d /var/lib/libvirt/images ''; + systemd.services.socat-caldance = { + description = "Forward ssh port to caldance"; + wantedBy = [ "multi-user.target" ]; + after = [ "network.target" ]; + + serviceConfig = { + ExecStart = "${pkgs.socat}/bin/socat TCP-LISTEN:8022,fork TCP:nixops-99a7e1ba-54dc-11ea-a965-10bf487fe63b-caldance:22"; + }; + }; time.timeZone = "Europe/Paris"; nix = { @@ -117,6 +131,7 @@ "discourse.immae.eu" = null; "discourse.cip-ca.fr" = null; "dev.immae.eu" = null; + "caldance.immae.eu" = null; }; }; services.nginx = { @@ -124,6 +139,9 @@ recommendedOptimisation = true; recommendedGzipSettings = true; recommendedProxySettings = true; + upstreams = { + caldance.servers."nixops-99a7e1ba-54dc-11ea-a965-10bf487fe63b-caldance:3031" = {}; + }; virtualHosts = { "dev.immae.eu" = { acmeRoot = config.myServices.certificates.webroot; @@ -143,6 +161,20 @@ forceSSL = true; locations."/".proxyPass = "http://localhost:18031"; }; + "caldance.immae.eu" = { + acmeRoot = config.myServices.certificates.webroot; + useACMEHost = name; + forceSSL = true; + locations."/".extraConfig = '' + uwsgi_pass caldance; + ''; + locations."/static/".alias = "/var/lib/caldance/caldance/app/www/static/"; + locations."/media/".alias = "/var/lib/caldance/caldance/media/"; + extraConfig = '' + auth_basic "Authentification requise"; + auth_basic_user_file ${pkgs.writeText "htpasswd" config.myEnv.websites.caldance.integration.password}; + ''; + }; }; };