19 lines
434 B
Nix
19 lines
434 B
Nix
{ 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 = "data"; }
|
|
{ path = ".local/share/Mumble"; type = "data"; }
|
|
];
|
|
|
|
home-manager.users.charlotte = { ... }: {
|
|
home.packages = with pkgs; [ mumble ];
|
|
};
|
|
};
|
|
}
|