all repos

dotfiles @ df8454886d6ee3925661ca15334656fb4c2b795b

i use rach linux btw
2 files changed, 18 insertions(+), 0 deletions(-)
nix: add vikunja
Author: Oleksandr Smirnov olexsmir@gmail.com
Committed at: 2026-02-21 01:49:58 +0200
Authored at: 2026-02-21 01:39:18 +0200
Parent: 9c9c13c
M nix/hosts/thought/default.nix
···
        12
        12
             ../../modules/mugit.nix

      
        13
        13
             ../../modules/wireguard.nix

      
        14
        14
             ../../modules/shortener.nix

      
        
        15
        +    ../../modules/vikunja.nix

      
        15
        16
           ];

      
        16
        17
         }

      
A nix/modules/vikunja.nix
···
        
        1
        +{ ... }:

      
        
        2
        +{

      
        
        3
        +  services.caddy.virtualHosts."vikunja.olexsmir.xyz".extraConfig = ''

      
        
        4
        +    reverse_proxy localhost:3456

      
        
        5
        +  '';

      
        
        6
        +

      
        
        7
        +  services.vikunja = {

      
        
        8
        +    enable = true;

      
        
        9
        +    frontendScheme = "https";

      
        
        10
        +    frontendHostname = "vikunja.olexsmir.xyz";

      
        
        11
        +    settings = {

      
        
        12
        +      service = {

      
        
        13
        +        enableregistration = true;

      
        
        14
        +      };

      
        
        15
        +    };

      
        
        16
        +  };

      
        
        17
        +}