feat: bump nextcloud.
Had to update packages which involved setting a interface for teh default gateway
This commit is contained in:
parent
8d43055ddf
commit
8e0ec53740
4 changed files with 12 additions and 9 deletions
|
@ -76,7 +76,7 @@ in {
|
||||||
|
|
||||||
services.nextcloud = {
|
services.nextcloud = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = pkgs.nextcloud27;
|
package = pkgs.nextcloud28;
|
||||||
hostName = domain;
|
hostName = domain;
|
||||||
https = true;
|
https = true;
|
||||||
|
|
||||||
|
@ -93,7 +93,7 @@ in {
|
||||||
appstoreEnable = true;
|
appstoreEnable = true;
|
||||||
|
|
||||||
extraApps = with config.services.nextcloud.package.packages.apps; {
|
extraApps = with config.services.nextcloud.package.packages.apps; {
|
||||||
inherit files_markdown files_texteditor forms groupfolders mail maps news notes onlyoffice polls;
|
inherit forms groupfolders mail maps notes onlyoffice polls;
|
||||||
};
|
};
|
||||||
|
|
||||||
extraOptions = {
|
extraOptions = {
|
||||||
|
|
10
flake.lock
10
flake.lock
|
@ -110,14 +110,14 @@
|
||||||
"lastModified": 1698519699,
|
"lastModified": 1698519699,
|
||||||
"narHash": "sha256-GK8NGWeG2gf3z/ktT0rzDVfj1UsaXxDLcSWCz6tsYSY=",
|
"narHash": "sha256-GK8NGWeG2gf3z/ktT0rzDVfj1UsaXxDLcSWCz6tsYSY=",
|
||||||
"owner": "compsoc1%2Fcompsoc",
|
"owner": "compsoc1%2Fcompsoc",
|
||||||
"repo": "presentations",
|
"repo": "presentations%2Fpresentations",
|
||||||
"rev": "7f451b04c5cffda1558e58f65a53dbc89a678446",
|
"rev": "7f451b04c5cffda1558e58f65a53dbc89a678446",
|
||||||
"type": "gitlab"
|
"type": "gitlab"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"host": "gitlab.skynet.ie",
|
"host": "gitlab.skynet.ie",
|
||||||
"owner": "compsoc1%2Fcompsoc",
|
"owner": "compsoc1%2Fcompsoc",
|
||||||
"repo": "presentations",
|
"repo": "presentations%2Fpresentations",
|
||||||
"type": "gitlab"
|
"type": "gitlab"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -532,11 +532,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs_6": {
|
"nixpkgs_6": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1696207572,
|
"lastModified": 1703081463,
|
||||||
"narHash": "sha256-w24NTSMrc7bMIQP5Y8BFsKbpYjbRh/+ptf/9gCEFrKo=",
|
"narHash": "sha256-Z7bWFPVZbX3Qdb7QMbaNpuhmQGx3eKKfj4d+12WnQno=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "fe0b3b663e98c85db7f08ab3a4ac318c523c0684",
|
"rev": "1a499bdaea0401ec0512330c712b63a8c68a3704",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -72,7 +72,7 @@
|
||||||
type = "gitlab";
|
type = "gitlab";
|
||||||
host = "gitlab.skynet.ie";
|
host = "gitlab.skynet.ie";
|
||||||
owner = "compsoc1%2Fcompsoc";
|
owner = "compsoc1%2Fcompsoc";
|
||||||
repo = "presentations";
|
repo = "presentations%2Fpresentations";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -100,7 +100,10 @@ in {
|
||||||
firewall.allowedTCPPorts = [22];
|
firewall.allowedTCPPorts = [22];
|
||||||
|
|
||||||
# explisitly stating this is good
|
# explisitly stating this is good
|
||||||
defaultGateway = "193.1.99.65";
|
defaultGateway = {
|
||||||
|
address= "193.1.99.65";
|
||||||
|
interface = "eno1";
|
||||||
|
};
|
||||||
|
|
||||||
# cannot use our own it seems?
|
# cannot use our own it seems?
|
||||||
nameservers = [
|
nameservers = [
|
||||||
|
|
Loading…
Reference in a new issue