nixos-config/configurations/mumble.nix
2020-05-23 11:36:26 +02:00

10 lines
245 B
Nix

{ ... }: {
custom.zfs.homeLinks = [
{ path = ".config/Mumble"; type = "data"; }
{ path = ".local/share/Mumble"; type = "data"; }
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ mumble ];
};
}