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

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
./minecraft ./minecraft
./mumble
./particles ./particles
./steam ./steam
./tetris ./tetris
@ -16,6 +17,7 @@
config = lib.mkIf config.chvp.games.enable { config = lib.mkIf config.chvp.games.enable {
chvp.games = { chvp.games = {
minecraft.client = lib.mkDefault false; minecraft.client = lib.mkDefault false;
mumble.enable = lib.mkDefault true;
steam.enable = lib.mkDefault true; steam.enable = lib.mkDefault true;
}; };
}; };

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 ];
};
};
}