Compare commits

..

No commits in common. "5c90b60563851b134084bae6eb9e68e42f011c32" and "28096f3b2efd15635fce56827bcaff892167f528" have entirely different histories.

7 changed files with 4 additions and 44 deletions

View file

@ -111,6 +111,7 @@ in {
# Setup lsp's and languages # Setup lsp's and languages
languages = { languages = {
enableLSP = true;
enableFormat = true; enableFormat = true;
enableTreesitter = true; enableTreesitter = true;
enableExtraDiagnostics = true; enableExtraDiagnostics = true;

View file

@ -114,11 +114,9 @@ in {
# Setup and enable mako # Setup and enable mako
services.mako = { services.mako = {
enable = true; enable = true;
settings = { defaultTimeout = 5000;
defaultTimeout = 5000; layer = "overlay";
layer = "overlay"; width = 200;
width = 200;
};
}; };
# Enable hyprpaper # Enable hyprpaper

View file

@ -1,34 +0,0 @@
{config, ...}: {
services.matrix-conduit = {
enable = true;
settings = {
global = {
server_name = "cronyakatsuki.xyz";
database_backend = "rocksdb";
allow_registration = true;
allow_check_for_updates = true;
};
};
};
systemd.services.conduit.serviceConfig = {
EnvironmentFile = ["${config.age.secrets.conduit.path}"];
};
services.traefik.dynamicConfigOptions.http = {
services.conduit.loadBalancer.servers = [
{
url = "http://localhost:6167";
}
];
routers.conduit = {
rule = "Host(`matrix.cronyakatsuki.xyz`)";
tls = {
certResolver = "porkbun";
};
service = "conduit";
entrypoints = "websecure";
};
};
}

View file

@ -4,6 +4,5 @@
./forgejo.nix ./forgejo.nix
./secrets.nix ./secrets.nix
./plausible.nix ./plausible.nix
./conduit.nix
]; ];
} }

View file

@ -7,9 +7,6 @@
plausible = { plausible = {
file = ../../../secrets/plausible.age; file = ../../../secrets/plausible.age;
}; };
conduit = {
file = ../../../secrets/conduit.age;
};
}; };
}; };
} }

Binary file not shown.

View file

@ -22,5 +22,4 @@ in {
"navidrome.age".publicKeys = systems ++ users; "navidrome.age".publicKeys = systems ++ users;
"forgejo-db.age".publicKeys = systems ++ users; "forgejo-db.age".publicKeys = systems ++ users;
"plausible.age".publicKeys = systems ++ users; "plausible.age".publicKeys = systems ++ users;
"conduit.age".publicKeys = systems ++ users;
} }