Mumble: Use pw file instead.

This commit is contained in:
Dmitry Voronin 2024-12-19 22:40:00 +03:00
parent 5e9ede64b1
commit 38ba41490b
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k
2 changed files with 2 additions and 24 deletions

View file

@ -202,26 +202,6 @@
"type": "github" "type": "github"
} }
}, },
"nix-cursors": {
"inputs": {
"nixpkgs": [
"nixpkgs"
]
},
"locked": {
"lastModified": 1716041700,
"narHash": "sha256-4jDR/KQmtsDw/nCvpy9VvWQgtc+4R4eyrb8eJSz+KCw=",
"owner": "LilleAila",
"repo": "nix-cursors",
"rev": "d119b747e47a7a24660676f59c77272d664ec61e",
"type": "github"
},
"original": {
"owner": "LilleAila",
"repo": "nix-cursors",
"type": "github"
}
},
"nix-formatter-pack": { "nix-formatter-pack": {
"inputs": { "inputs": {
"nixpkgs": [ "nixpkgs": [
@ -774,7 +754,6 @@
"root": { "root": {
"inputs": { "inputs": {
"home-manager": "home-manager", "home-manager": "home-manager",
"nix-cursors": "nix-cursors",
"nix-on-droid": "nix-on-droid", "nix-on-droid": "nix-on-droid",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgsJobber": "nixpkgsJobber", "nixpkgsJobber": "nixpkgsJobber",

View file

@ -1,13 +1,12 @@
{ ... }: { config, ... }:
{ {
services.murmur = { services.murmur = {
enable = true; enable = true;
clientCertRequired = true; clientCertRequired = true;
password = "bonjour"; environmentFile = "${config.services.murmur.stateDir}/Env";
port = 22666; port = 22666;
registerHostname = "chat.voronind.com"; registerHostname = "chat.voronind.com";
sslCert = "/etc/letsencrypt/live/voronind.com/fullchain.pem"; sslCert = "/etc/letsencrypt/live/voronind.com/fullchain.pem";
sslKey = "/etc/letsencrypt/live/voronind.com/privkey.pem"; sslKey = "/etc/letsencrypt/live/voronind.com/privkey.pem";
extraConfig = '''';
}; };
} }