nixpkgs: Refresh channels and inputs
Rebase the fork branches and refresh nixpkgs, home-manager, and the approved ancillary inputs. Update kernel and release metadata, adapt removed package and Home Assistant options, and keep Determinate Nix on its tested nixpkgs revision to avoid duplicate Boost patches. Retire Sharry and its public endpoint because copyparty replaces it. Document the GitHub mirror gate and require real devshell and system builds in the upgrade validation workflow.
This commit is contained in:
@@ -47,10 +47,6 @@ in
|
||||
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFdHbZErWLmTPO/aEWB1Fup/aGMf31Un5Wk66FJwTz/8";
|
||||
files = {
|
||||
"object/minio.env" = {};
|
||||
"object/sharry.conf" = {
|
||||
owner = "sharry";
|
||||
group = "sharry";
|
||||
};
|
||||
"object/minio-client-config.json" = {
|
||||
owner = config.my.user.config.name;
|
||||
group = config.my.user.config.group;
|
||||
@@ -65,7 +61,6 @@ in
|
||||
firewall = {
|
||||
tcp.allowed = [
|
||||
9000 9001
|
||||
config.services.sharry.config.bind.port
|
||||
8069
|
||||
5000
|
||||
config.services.hedgedoc.settings.port
|
||||
@@ -122,8 +117,6 @@ in
|
||||
};
|
||||
};
|
||||
|
||||
sharry = awaitPostgres;
|
||||
|
||||
atticd = mkMerge [
|
||||
awaitPostgres
|
||||
{
|
||||
@@ -175,66 +168,6 @@ in
|
||||
dataDir = [ "/mnt/minio" ];
|
||||
};
|
||||
|
||||
sharry = {
|
||||
enable = true;
|
||||
configOverridesFile = config.age.secrets."object/sharry.conf".path;
|
||||
|
||||
config = {
|
||||
base-url = "https://share.${lib.my.c.pubDomain}";
|
||||
bind.address = "::";
|
||||
alias-member-enabled = true;
|
||||
webapp = {
|
||||
chunk-size = "64M";
|
||||
};
|
||||
backend = {
|
||||
auth = {
|
||||
fixed = {
|
||||
enabled = true;
|
||||
user = "dev";
|
||||
};
|
||||
internal = {
|
||||
enabled = true;
|
||||
order = 50;
|
||||
};
|
||||
};
|
||||
jdbc = {
|
||||
url = "jdbc:postgresql://colony-psql:5432/sharry";
|
||||
user = "sharry";
|
||||
};
|
||||
files = {
|
||||
default-store = "minio";
|
||||
stores = {
|
||||
database.enabled = false;
|
||||
minio = {
|
||||
enabled = true;
|
||||
type = "s3";
|
||||
endpoint = "https://s3.nul.ie";
|
||||
access-key = "share";
|
||||
bucket = "share";
|
||||
};
|
||||
};
|
||||
};
|
||||
compute-checksum.parallel = 4;
|
||||
signup.mode = "invite";
|
||||
share = {
|
||||
max-size = "128G";
|
||||
max-validity = "3650 days";
|
||||
};
|
||||
mail = {
|
||||
enabled = true;
|
||||
smtp = {
|
||||
host = "mail.nul.ie";
|
||||
port = 587;
|
||||
user = "sharry@nul.ie";
|
||||
ssl-type = "starttls";
|
||||
default-from = "Sharry <sharry@nul.ie>";
|
||||
timeout = "30 seconds";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
atticd = {
|
||||
enable = false;
|
||||
environmentFile = config.age.secrets."object/atticd.env".path;
|
||||
@@ -308,7 +241,6 @@ in
|
||||
forwardPorts = [
|
||||
{ from = "host"; host.port = 9000; guest.port = 9000; }
|
||||
{ from = "host"; host.port = 9001; guest.port = 9001; }
|
||||
{ from = "host"; guest.port = config.services.sharry.config.bind.port; }
|
||||
];
|
||||
};
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user