Revert "Committing to save progress, will revert in next commit"

This reverts commit 2d87360df2.
This commit is contained in:
2025-04-21 11:55:43 +03:00
parent 2d87360df2
commit 54595327d0
6 changed files with 1 additions and 28 deletions

View File

@@ -12,7 +12,6 @@
./../nixosModules/nextcloud.nix
./../nixosModules/wakapi.nix
./../nixosModules/eko.nix
./../nixosModules/wallabag.nix
];
boot.loader.grub = {
@@ -55,7 +54,6 @@
nextcloud.enable = false;
wakapi.enable = true;
eko.enable = true;
wallabag.enable = true;
# Automatically pull this config from git
autoUpdate.enable = true;

View File

@@ -19,7 +19,6 @@
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;
services.nginx.enable = true;
services.nginx.virtualHosts."budget.kyren.codes" = {
useACMEHost = "kyren.codes";
forceSSL = true;

View File

@@ -16,10 +16,7 @@
];
};
environment.sessionVariables = rec {
WALLABAG_DATA = "$HOME/wallabag";
};
# Make sure the "eko" user has access to /srv/eko
systemd.tmpfiles.rules = [
"d /srv/eko 0750 eko eko"
];

View File

@@ -15,7 +15,6 @@
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;
services.nginx.enable = true;
services.nginx.virtualHosts."git.kyren.codes" = {
useACMEHost = "kyren.codes";
forceSSL = true;

View File

@@ -19,7 +19,6 @@
# Make sure acme module is active for the "kyren.codes" ssl cert
acme.enable = true;
services.nginx.enable = true;
services.nginx.virtualHosts.${config.services.nextcloud.hostName} = {
forceSSL = true;
useACMEHost = "kyren.codes";

View File

@@ -1,19 +0,0 @@
{ pkgs, lib, config, ... }: {
options = {
wallabag.enable = lib.mkEnableOption "enables wallabag";
};
config = lib.mkIf config.wallabag.enable {
users.groups.wallabag = { };
users.users.wallabag = {
createHome = false;
isNormalUser = true;
group = "wallabag";
openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIO7P9K9D5RkBk+JCRRS6AtHuTAc6cRpXfRfRMg/Kyren"
];
};
};
}