More state whitelisting

This commit is contained in:
Charlotte Van Petegem 2020-05-23 11:36:26 +02:00
parent dc76560aa0
commit eadf45ae15
3 changed files with 20 additions and 2 deletions

View file

@ -0,0 +1,8 @@
{ ... }: {
custom.zfs.homeLinks = [
{ path = ".ICAClient"; type = "data"; }
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ citrix_workspace ];
};
}

10
configurations/mumble.nix Normal file
View file

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