Compare commits

...

4 Commits

Author SHA1 Message Date
531c7b3fc8 remove vault for obsidian 2024-01-13 19:27:11 -08:00
97a8cb7462 Revert "direnv allow"
This reverts commit b4cf3f650f.
2024-01-13 16:33:06 -08:00
19367553c0 add beancount back 2024-01-13 14:35:44 -08:00
b4cf3f650f direnv allow 2024-01-13 20:08:46 +00:00
4 changed files with 1 additions and 30 deletions

View File

@ -5,7 +5,6 @@
./wireguard-server.nix
./samba-server.nix
./syncthing.nix
./obsidian-vault.nix
./share.nix
./rss.nix
./home-assistant
@ -126,13 +125,6 @@
"git.tstarr.us" = (SSL // {
locations."/".proxyPass = "http://localhost:3001/";
});
"vault.tstarr.us" = (SSL // {
locations."/".proxyPass = "http://localhost:5000/";
extraConfig = ''
auth_pam "Password Required";
auth_pam_service_name "nginx";
'';
});
"share.tstarr.us" = (SSL // {
locations."/".proxyPass = "http://localhost:5001/";
extraConfig = ''

View File

@ -1,20 +0,0 @@
{ config, lib, pkgs, user, ... }:
{
networking.firewall.allowedTCPPorts = [ 5000 ];
networking.firewall.allowedUDPPorts = [ 5000 ];
environment.systemPackages = with pkgs; [ dufs ];
systemd.services.obsidian-vault = {
description = "Start dufs containing obsidian vault (vulcan)";
wantedBy = [ "default.target" ];
restartIfChanged = true;
serviceConfig = {
Type = "simple";
Restart = "always";
ExecStart = "${pkgs.dufs}/bin/dufs -p 5000 -A /engi/apps/dufs/vault";
};
};
}

View File

@ -70,7 +70,6 @@ in {
{ "name" = "Homelab"; "children" = [
{ "url" = "http://localhost:8384"; name = "Syncthing"; }
{ "url" = "https://github.com/starr-dusT/dotfiles"; name = "Dotfiles"; }
{ "url" = "https://vault.tstarr.us"; name = "Vault (dufs)"; }
{ "url" = "https://rssbridge.tstarr.us"; name = "RSSBridge"; }
]; }
{ "name" = "Nix"; "children" = [

View File

@ -17,8 +17,8 @@ in {
environment.systemPackages = with pkgs; [
(python3.withPackages my-python-packages)
beancount
fava
beancount
nodePackages_latest.pyright
];
};