Compare commits

..

No commits in common. "d2eb1518c70e5a67736ffff2a5cca1d54947791f" and "8ecb978605b5b336ac669ae9df22a90f6d0cc644" have entirely different histories.

5 changed files with 0 additions and 59 deletions

View file

@ -1,18 +0,0 @@
{
config,
lib,
pkgs,
...
}:
with lib; let
cfg = config.local.services.deepState;
in {
options.local.services.deepState.enable = mkEnableOption "trivionomicon settings";
config =
mkIf cfg.enable {
home.sessionVariables = {
FSOCIETY_TELEGRAM_BACKUP_N = "0";
FSOCIETY_TELEGRAM_BACKUP_LOCATION = "/extern/var/fsociety_backup";
};
};
}

View file

@ -17,6 +17,5 @@
./defaultDesktopPack.nix ./defaultDesktopPack.nix
./accounts.nix ./accounts.nix
./syncthing.nix ./syncthing.nix
./deepState.nix
]; ];
} }

View file

@ -29,7 +29,6 @@
prompt = "%B[%~] \${vcs_info_msg_0_}%b"; prompt = "%B[%~] \${vcs_info_msg_0_}%b";
}; };
accounts.enable = true; accounts.enable = true;
deepState.enable = true;
gpg = { gpg = {
enable = true; enable = true;
defaultKey = "7AA277E604A4173916BBB4E91FFAC35E1798174F"; defaultKey = "7AA277E604A4173916BBB4E91FFAC35E1798174F";
@ -86,7 +85,6 @@
}) })
gnucash gnucash
kdenlive kdenlive
nmap
virt-manager virt-manager
]; ];

View file

@ -19,6 +19,5 @@ with lib; {
./calibre-web.nix ./calibre-web.nix
./immich.nix ./immich.nix
./wiki-js.nix ./wiki-js.nix
./mealie.nix
]; ];
} }

View file

@ -1,37 +0,0 @@
{
lib,
pkgs,
...
}:
with lib; {
systemd.services.wiki-js = {
requires = ["postgresql.service"];
after = ["postgresql.service"];
};
services = {
nginx = {
virtualHosts."food.posixlycorrect.com" = {
enableACME = true;
forceSSL = true;
extraConfig = ''
proxy_headers_hash_max_size 512;
proxy_headers_hash_bucket_size 128;
'';
locations."/" = {
proxyPass = "http://127.0.0.1:9000";
};
};
};
mealie = {
enable = true;
listenAddress = "127.0.0.1";
port = 9000;
credentialsFile = "/var/trust/mealie/credentials.env";
settings = {
ALLOW_SIGNUP = "false";
};
};
};
}