Mumble: Use pw file instead.
This commit is contained in:
parent
5e9ede64b1
commit
38ba41490b
21
flake.lock
21
flake.lock
|
@ -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",
|
||||||
|
|
|
@ -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 = '''';
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue