feat: disabled seafile for now
This commit is contained in:
@@ -2,11 +2,11 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./atuin.nix
|
./atuin.nix
|
||||||
./authelia.nix
|
./authelia.nix
|
||||||
./seafile.nix
|
|
||||||
# ./home-assistant.nix
|
# ./home-assistant.nix
|
||||||
# ./navidrome.nix
|
# ./navidrome.nix
|
||||||
# ./llama.nix
|
# ./llama.nix
|
||||||
# ./nextcloud.nix
|
# ./nextcloud.nix
|
||||||
|
# ./seafile.nix
|
||||||
./minecraft.nix
|
./minecraft.nix
|
||||||
./jellyfin.nix
|
./jellyfin.nix
|
||||||
./vscode.nix
|
./vscode.nix
|
||||||
|
|||||||
@@ -2,8 +2,10 @@
|
|||||||
# sops = {
|
# sops = {
|
||||||
# # secrets."nextcloud/adminpass".owner = config.users.users..name;
|
# # secrets."nextcloud/adminpass".owner = config.users.users..name;
|
||||||
# };
|
# };
|
||||||
|
nixpkgs.config.allowBroken = true;
|
||||||
services = {
|
services = {
|
||||||
seafile = {
|
seafile = {
|
||||||
|
group = config.services.caddy.group;
|
||||||
enable = false;
|
enable = false;
|
||||||
adminEmail = "admin@uttarayan.me";
|
adminEmail = "admin@uttarayan.me";
|
||||||
initialAdminPassword = "foobar";
|
initialAdminPassword = "foobar";
|
||||||
@@ -33,6 +35,9 @@
|
|||||||
# the administrator needs to manually activate this user.
|
# the administrator needs to manually activate this user.
|
||||||
REMOTE_USER_ACTIVATE_USER_AFTER_CREATION = True
|
REMOTE_USER_ACTIVATE_USER_AFTER_CREATION = True
|
||||||
'';
|
'';
|
||||||
|
ccnetSettings = {
|
||||||
|
General.SERVICE_URL = "https://cloud.darksailor.dev";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
caddy = {
|
caddy = {
|
||||||
virtualHosts."cloud.darksailor.dev".extraConfig = ''
|
virtualHosts."cloud.darksailor.dev".extraConfig = ''
|
||||||
|
|||||||
14
overlays.nix
14
overlays.nix
@@ -121,6 +121,20 @@
|
|||||||
};
|
};
|
||||||
ddcbacklight = inputs.ddcbacklight.packages.${prev.system}.ddcbacklight;
|
ddcbacklight = inputs.ddcbacklight.packages.${prev.system}.ddcbacklight;
|
||||||
# ghostty = inputs.ghostty.packages.${prev.system}.default;
|
# ghostty = inputs.ghostty.packages.${prev.system}.default;
|
||||||
|
python312 = prev.python312.override {
|
||||||
|
packageOverrides = final: prev: {
|
||||||
|
pysaml2 = prev.pysaml2.overridePythonAttrs (orig: {
|
||||||
|
doCheck = false;
|
||||||
|
# disabledTests =
|
||||||
|
# orig.disabledTests
|
||||||
|
# ++ [
|
||||||
|
# "test_encrypted_response_6"
|
||||||
|
# "test_validate_cert_chains"
|
||||||
|
# "test_validate_with_root_cert"
|
||||||
|
# ];
|
||||||
|
});
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
anyrun-overlay = final: prev: {
|
anyrun-overlay = final: prev: {
|
||||||
anyrun =
|
anyrun =
|
||||||
|
|||||||
Reference in New Issue
Block a user