Compare commits
3 Commits
e8f929a35a
...
nextcloud_
| Author | SHA1 | Date | |
|---|---|---|---|
| 669b355d99 | |||
| 03846d5e7f | |||
|
add299c242
|
8
flake.lock
generated
8
flake.lock
generated
@@ -450,11 +450,11 @@
|
|||||||
"utils": "utils_4"
|
"utils": "utils_4"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1751462005,
|
"lastModified": 1764942243,
|
||||||
"narHash": "sha256-vhr2GORiXij3mL+QIfnL0sKSbbBIglw1wnHWNmFejiA=",
|
"narHash": "sha256-P02Zm0VAON9SqRxqe6h5vfxgpCBYeiz5JPWGIn6KFFg=",
|
||||||
"ref": "refs/heads/master",
|
"ref": "refs/heads/master",
|
||||||
"rev": "f505fb17bf1882cc3683e1e252ce44583cbe58ce",
|
"rev": "f56b7eb6887b7e0fecae4a1f4c1311392eebad8d",
|
||||||
"revCount": 155,
|
"revCount": 156,
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "https://git.dynamicdiscord.de/kalipso/zineshop"
|
"url": "https://git.dynamicdiscord.de/kalipso/zineshop"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -48,7 +48,7 @@ in
|
|||||||
firefox
|
firefox
|
||||||
thunderbird
|
thunderbird
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
tor-browser-bundle-bin
|
tor-browser
|
||||||
keepassxc
|
keepassxc
|
||||||
libreoffice
|
libreoffice
|
||||||
gimp
|
gimp
|
||||||
|
|||||||
@@ -31,7 +31,7 @@
|
|||||||
firefox
|
firefox
|
||||||
thunderbird
|
thunderbird
|
||||||
telegram-desktop
|
telegram-desktop
|
||||||
tor-browser-bundle-bin
|
tor-browser
|
||||||
keepassxc
|
keepassxc
|
||||||
libreoffice
|
libreoffice
|
||||||
gimp
|
gimp
|
||||||
|
|||||||
@@ -33,7 +33,7 @@ with lib;
|
|||||||
|
|
||||||
services.nextcloud = {
|
services.nextcloud = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.nextcloud31;
|
package = pkgs.nextcloud32;
|
||||||
hostName = "cloud.malobeo.org";
|
hostName = "cloud.malobeo.org";
|
||||||
config.adminpassFile = config.sops.secrets.nextcloudAdminPass.path;
|
config.adminpassFile = config.sops.secrets.nextcloudAdminPass.path;
|
||||||
maxUploadSize = "10G";
|
maxUploadSize = "10G";
|
||||||
@@ -48,16 +48,39 @@ with lib;
|
|||||||
extraAppsEnable = true;
|
extraAppsEnable = true;
|
||||||
extraApps = {
|
extraApps = {
|
||||||
inherit (config.services.nextcloud.package.packages.apps) contacts calendar polls registration collectives forms;
|
inherit (config.services.nextcloud.package.packages.apps) contacts calendar polls registration collectives forms;
|
||||||
appointments = pkgs.fetchNextcloudApp {
|
|
||||||
sha256 = "sha256-ls1rLnsX7U9wo2WkEtzhrvliTcWUl6LWXolE/9etJ78=";
|
deckWithDrag = pkgs.php.buildComposerProject (finalAttrs: {
|
||||||
url = "https://github.com/SergeyMosin/Appointments/raw/refs/tags/v2.4.3/build/artifacts/appstore/appointments.tar.gz";
|
pname = "deck";
|
||||||
license = "agpl3Plus";
|
version = "1.0.0";
|
||||||
};
|
src = pkgs.fetchzip {
|
||||||
deck = pkgs.fetchNextcloudApp {
|
url = "https://github.com/nextcloud/deck/archive/refs/heads/stable32.zip";
|
||||||
sha256 = "sha256-1sqDmJpM9SffMY2aaxwzqntdjdcUaRySyaUDv9VHuiE=";
|
hash = "sha256-eMHjfki+axEtlhV6518mlAzPhZxAZqEX7HiRsJf1vxo=";
|
||||||
url = "https://link.storjshare.io/raw/jw7pf6gct34j3pcqvlq6ddasvdwq/mal/deck.tar.gz";
|
};
|
||||||
license = "agpl3Plus";
|
composerNoDev = true;
|
||||||
};
|
vendorHash = pkgs.lib.fakeHash;
|
||||||
|
postInstall = ''
|
||||||
|
cp -r $out/share/php/deck/* $out/
|
||||||
|
rm -r $out/share
|
||||||
|
'';
|
||||||
|
});
|
||||||
|
|
||||||
|
#deckWithDrag = pkgs.fetchNextcloudApp {
|
||||||
|
# appName = "deck";
|
||||||
|
# appVersion = "1.16.2";
|
||||||
|
# license = "agpl3Plus";
|
||||||
|
# teams = [ pkgs.lib.teams.nextcloud ];
|
||||||
|
# url = "https://github.com/nextcloud-releases/deck/releases/download/v1.16.2/deck-v1.16.2.tar.gz";
|
||||||
|
# hash = "sha256-rFymTIr7pOuMES3DMIOS7cvq+CEIekLZYLqz58TOP04=";
|
||||||
|
# description = "";
|
||||||
|
# homepage = "https://github.com/nextcloud/deck";
|
||||||
|
# unpack = true;
|
||||||
|
# patches = [
|
||||||
|
# (pkgs.fetchpatch {
|
||||||
|
# url = "https://git.dynamicdiscord.de/ahtlon/deck/commit/77cbcf42ca80dd32e450839f02faca2e5fed3761.patch";
|
||||||
|
# sha256 = "sha256-agwFMwXO8WLL0+pdeKF/pA59V9ah9t590sCl1msQonA=";
|
||||||
|
# })
|
||||||
|
# ];
|
||||||
|
#};
|
||||||
};
|
};
|
||||||
settings = {
|
settings = {
|
||||||
trusted_domains = ["10.0.0.13"];
|
trusted_domains = ["10.0.0.13"];
|
||||||
|
|||||||
57
outputs.nix
57
outputs.nix
@@ -74,6 +74,63 @@ in (utils.lib.eachSystem (builtins.filter filter_system utils.lib.defaultSystems
|
|||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
#deckWithDrag = pkgs.buildNpmPackage {
|
||||||
|
# name = "deckWithDrag";
|
||||||
|
# version = "1.16.2";
|
||||||
|
# src = pkgs.fetchFromGitHub {
|
||||||
|
# owner = "nextcloud";
|
||||||
|
# repo = "deck";
|
||||||
|
# rev = "v1.16.2";
|
||||||
|
# hash = "sha256-NBkCdMjIY2r+AgCLBt4YnD4sUW7GTKxT5vHAmpk4wno=";
|
||||||
|
# leaveDotGit = true;
|
||||||
|
# };
|
||||||
|
|
||||||
|
# makeCacheWritable = true;
|
||||||
|
# npmDepsHash = "sha256-VaKfpYFtrTUvGbKORPvex1FvLz4vR7zfHAf+fdf/6OE=";
|
||||||
|
|
||||||
|
# buildInputs = with pkgs; [
|
||||||
|
# gnumake krankerl php84Packages.composer php nodejs_24
|
||||||
|
# ];
|
||||||
|
|
||||||
|
# patches = [
|
||||||
|
# (pkgs.fetchpatch {
|
||||||
|
# url = "https://git.dynamicdiscord.de/ahtlon/deck/commit/77cbcf42ca80dd32e450839f02faca2e5fed3761.patch";
|
||||||
|
# sha256 = "sha256-agwFMwXO8WLL0+pdeKF/pA59V9ah9t590sCl1msQonA=";
|
||||||
|
# })
|
||||||
|
# ];
|
||||||
|
|
||||||
|
# buildPhase = ''
|
||||||
|
# ${pkgs.krankerl}/bin/krankerl package
|
||||||
|
# '';
|
||||||
|
#};
|
||||||
|
|
||||||
|
deckWithDrag = pkgs.stdenv.mkDerivation {
|
||||||
|
name = "deckWithDrag";
|
||||||
|
src = pkgs.fetchFromGitHub {
|
||||||
|
owner = "nextcloud";
|
||||||
|
repo = "deck";
|
||||||
|
rev = "v1.16.2";
|
||||||
|
hash = "sha256-NBkCdMjIY2r+AgCLBt4YnD4sUW7GTKxT5vHAmpk4wno=";
|
||||||
|
leaveDotGit = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = with pkgs; [
|
||||||
|
gnumake krankerl php84Packages.composer php nodejs_24
|
||||||
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(pkgs.fetchpatch {
|
||||||
|
url = "https://git.dynamicdiscord.de/ahtlon/deck/commit/77cbcf42ca80dd32e450839f02faca2e5fed3761.patch";
|
||||||
|
sha256 = "sha256-agwFMwXO8WLL0+pdeKF/pA59V9ah9t590sCl1msQonA=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
buildPhase = ''
|
||||||
|
make release
|
||||||
|
#${pkgs.krankerl}/bin/krankerl package
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
|
||||||
run-vm = pkgs.writeShellScriptBin "run-vm" (builtins.readFile ./scripts/run-vm.sh);
|
run-vm = pkgs.writeShellScriptBin "run-vm" (builtins.readFile ./scripts/run-vm.sh);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user