diff --git a/flake.lock b/flake.lock index c37803a1..04d0e5e9 100644 --- a/flake.lock +++ b/flake.lock @@ -202,26 +202,6 @@ "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": { "inputs": { "nixpkgs": [ @@ -774,7 +754,6 @@ "root": { "inputs": { "home-manager": "home-manager", - "nix-cursors": "nix-cursors", "nix-on-droid": "nix-on-droid", "nixpkgs": "nixpkgs", "nixpkgsJobber": "nixpkgsJobber", diff --git a/host/x86_64-linux/home/Mumble.nix b/host/x86_64-linux/home/Mumble.nix index 5471150b..89eb818e 100644 --- a/host/x86_64-linux/home/Mumble.nix +++ b/host/x86_64-linux/home/Mumble.nix @@ -1,13 +1,12 @@ -{ ... }: +{ config, ... }: { services.murmur = { enable = true; clientCertRequired = true; - password = "bonjour"; + environmentFile = "${config.services.murmur.stateDir}/Env"; port = 22666; registerHostname = "chat.voronind.com"; sslCert = "/etc/letsencrypt/live/voronind.com/fullchain.pem"; sslKey = "/etc/letsencrypt/live/voronind.com/privkey.pem"; - extraConfig = ''''; }; }