Add mumble again
All checks were successful
Cachix / build (elendel) (push) Successful in 2m7s
Cachix / build (kholinar) (push) Successful in 5m24s
Cachix / build (marabethia) (push) Successful in 4m3s

This commit is contained in:
Charlotte Van Petegem 2025-06-25 19:13:53 +02:00
parent d32a02f7eb
commit 6d6320cf1d
Signed by: chvp
SSH key fingerprint: SHA256:s9rb8jBVfdahqWHuBAcHCBP1wmj4eYQXZfqgz4H3E9E
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
options.chvp.games.mumble.enable = lib.mkOption {
default = false;
example = true;
};
config = lib.mkIf config.chvp.games.mumble.enable {
chvp.base.zfs.homeLinks = [
{ path = ".config/Mumble"; type = "cache"; }
{ path = ".local/share/Mumble"; type = "cache"; }
];
home-manager.users.charlotte = { ... }: {
home.packages = with pkgs; [ mumble ];
};
};
}