Update dependencies

This commit is contained in:
Charlotte Van Petegem 2022-03-07 19:17:39 +01:00
parent e7dfd4f838
commit 9ebf72a03a
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 38 additions and 36 deletions

30
flake.lock generated
View file

@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1646297700, "lastModified": 1646639428,
"narHash": "sha256-LJxdzpM2rhjnrF3A0Yx7yTRvcYFpvmESz2RqLc4gGxA=", "narHash": "sha256-aNVJCRF+dOxe1sqlY4aL5O50SjG8tHp4MTZV6AxIMOs=",
"owner": "accentor", "owner": "accentor",
"repo": "flake", "repo": "flake",
"rev": "20ca5d132cce637d8630fdfd02e6a8eaad40e12e", "rev": "b48a4e7d81b9026691615643ba4a17f158da3cf1",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -58,11 +58,11 @@
}, },
"emacs-overlay": { "emacs-overlay": {
"locked": { "locked": {
"lastModified": 1646618851, "lastModified": 1646673112,
"narHash": "sha256-LvXKcS1ItRoOLhY/trvG3DqC1O8HipwdLVcu6OUhRFk=", "narHash": "sha256-oA0qEgaLd+HcZZ6YVcXIubupl2dVhf5lKtgxVrUul24=",
"owner": "nix-community", "owner": "nix-community",
"repo": "emacs-overlay", "repo": "emacs-overlay",
"rev": "1df96ae1607647923a32084df71c6ad42c81135b", "rev": "803766a96cadfacf822f9312bedba4fa5f9dc2eb",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -130,11 +130,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1646254136, "lastModified": 1646497237,
"narHash": "sha256-8nQx02tTzgYO21BP/dy5BCRopE8OwE8Drsw98j+Qoaw=", "narHash": "sha256-Ccpot1h/rV8MgcngDp5OrdmLTMaUTbStZTR5/sI7zW0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "3e072546ea98db00c2364b81491b893673267827", "rev": "062a0c5437b68f950b081bbfc8a699d57a4ee026",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -146,11 +146,11 @@
}, },
"nur": { "nur": {
"locked": { "locked": {
"lastModified": 1646626019, "lastModified": 1646675036,
"narHash": "sha256-5hYr509v+oB2rmf95Y/wZcL6KdZy04xc4gUgre+QaWM=", "narHash": "sha256-HdYLSK2a8DJdo5qNnQuE7RZ8bCvtSsAy5rO7jONG1hM=",
"owner": "nix-community", "owner": "nix-community",
"repo": "NUR", "repo": "NUR",
"rev": "e9a708815b3dd2e2f891c4d5812e232efd900950", "rev": "5666e0baa5341fceaeb24b74892d2479d9c2363a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -179,11 +179,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1646300275, "lastModified": 1646638584,
"narHash": "sha256-s7LOKfof6Ei89omQCX7E2LJkyU5nj/GVvM3HFJ2BcYI=", "narHash": "sha256-7mdbcKNtakb51ExqX8dfs5rD29faUVkjpbzFOtcLsAk=",
"owner": "chvp", "owner": "chvp",
"repo": "tetris", "repo": "tetris",
"rev": "4ac429b3909bd03bce9583506600ae422c4de69f", "rev": "7cc6d3a017f0a4e65c67843b989419548a9c5b16",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -30,11 +30,12 @@
services = { services = {
matrix-synapse = { matrix-synapse = {
enable = true; enable = true;
settings = {
server_name = "vanpetegem.me"; server_name = "vanpetegem.me";
public_baseurl = "https://matrix.vanpetegem.me"; public_baseurl = "https://matrix.vanpetegem.me";
listeners = [{ listeners = [{
port = 8448; port = 8448;
bind_address = "localhost"; bind_addresses = [ "::1" "127.0.0.1" ];
type = "http"; type = "http";
tls = false; tls = false;
x_forwarded = true; x_forwarded = true;
@ -52,6 +53,7 @@
config.age.secrets."files/services/matrix-synapse/whatsapp-registration.yml".path config.age.secrets."files/services/matrix-synapse/whatsapp-registration.yml".path
config.age.secrets."files/services/matrix-synapse/slack-registration.yml".path config.age.secrets."files/services/matrix-synapse/slack-registration.yml".path
]; ];
};
extraConfigFiles = [ extraConfigFiles = [
config.age.secrets."files/services/matrix-synapse/config.yml".path config.age.secrets."files/services/matrix-synapse/config.yml".path
]; ];