remove nixpkgs-patcher

This commit is contained in:
2026-07-28 20:56:32 +02:00
parent 421b9a7cd6
commit 5a61ac8367
3 changed files with 12 additions and 58 deletions
Generated
+7 -49
View File
@@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1784789275, "lastModified": 1785261905,
"narHash": "sha256-cgRTWuG+u1tBPhm01JrId2k0Bni09phVJ1Q0BZlRd7M=", "narHash": "sha256-SnFtgFiAhlwOlaEuFZoVYjOxqfYoiLtHJoFGuyEgHUE=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "3b0e6bbd65869af1beadf5963a99befc179d209f", "rev": "10174c0fe02099dbdee2bf918f1a92659fc9217f",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -22,11 +22,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1784843119, "lastModified": 1785263066,
"narHash": "sha256-KUklz9QgWKgBxWXA2UOO2bFHe96ioAuDU5kdhPNR+4A=", "narHash": "sha256-2/9cWGQ9EvI3XVaN6VeJMJogUhujWI/sM5gruSSjqnc=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "fac37c4c352c6ae34578df70dd833cfd7dfca131", "rev": "818edbf5865fc34ace892ea72b2abeed4d2fc2fa",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -35,52 +35,10 @@
"type": "github" "type": "github"
} }
}, },
"nixpkgs-patch-filetote": {
"flake": false,
"locked": {
"narHash": "sha256-GqEjefb2EZNMsTWPDqqnjrjk7G9UEn+7OID03eLHyaM=",
"type": "file",
"url": "https://github.com/NixOS/nixpkgs/pull/543082.diff"
},
"original": {
"type": "file",
"url": "https://github.com/NixOS/nixpkgs/pull/543082.diff"
}
},
"nixpkgs-patch-slskd": {
"flake": false,
"locked": {
"narHash": "sha256-QRija0sHZY/w4bS/c1LWcckPL5zYK7QFnR7OV3zfrvE=",
"type": "file",
"url": "https://github.com/NixOS/nixpkgs/pull/544340.diff"
},
"original": {
"type": "file",
"url": "https://github.com/NixOS/nixpkgs/pull/544340.diff"
}
},
"nixpkgs-patcher": {
"locked": {
"lastModified": 1781789965,
"narHash": "sha256-ZRlWPq2Qms6KbesJrj7cUe2GN7s8BZISfp9ZbrCi2x0=",
"owner": "gepbird",
"repo": "nixpkgs-patcher",
"rev": "d2abed2b94b7955e05b4e2e8a9b8ac45597ecf94",
"type": "github"
},
"original": {
"owner": "gepbird",
"repo": "nixpkgs-patcher",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs"
"nixpkgs-patch-filetote": "nixpkgs-patch-filetote",
"nixpkgs-patch-slskd": "nixpkgs-patch-slskd",
"nixpkgs-patcher": "nixpkgs-patcher"
} }
} }
}, },
+1 -8
View File
@@ -5,11 +5,6 @@
url = "github:nix-community/home-manager"; url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
nixpkgs-patcher.url = "github:gepbird/nixpkgs-patcher";
nixpkgs-patch-filetote = {
url = "https://github.com/NixOS/nixpkgs/pull/543082.diff";
flake = false;
};
}; };
outputs = outputs =
@@ -17,14 +12,12 @@
self, self,
nixpkgs, nixpkgs,
home-manager, home-manager,
nixpkgs-patch-filetote,
nixpkgs-patcher,
}@inputs: }@inputs:
let let
system = "x86_64-linux"; system = "x86_64-linux";
in in
{ {
nixosConfigurations.nixos-music = nixpkgs-patcher.lib.nixosSystem { nixosConfigurations.nixos-music = nixpkgs.lib.nixosSystem {
inherit system; inherit system;
specialArgs = inputs; specialArgs = inputs;
modules = [ modules = [
+4 -1
View File
@@ -63,11 +63,14 @@
''; '';
listen_port = 32895; listen_port = 32895;
}; };
feature = {
swagger = true;
};
integrations = { integrations = {
webhooks = { webhooks = {
discord_relay = { discord_relay = {
call = { call = {
url = "http://127.0.0.1:5001/slskd_webhook"; url = "http://localhost:5001/slskd_webhook";
}; };
on = [ "UploadFileComplete" ]; on = [ "UploadFileComplete" ];
timeout = 5000; timeout = 5000;