Minecraft

This commit is contained in:
Charlotte Van Petegem 2021-03-08 14:57:26 +01:00
parent 2060295da9
commit 3ac380fd61
No known key found for this signature in database
GPG key ID: 019E764B7184435A
10 changed files with 53 additions and 20 deletions

View file

@ -1,7 +1,10 @@
{ ... }: {
chvp.zfs.homeLinks = [
{ path = ".ICAClient"; type = "data"; }
];
chvp = {
nix.unfreePackages = [ "citrix-workspace" ];
zfs.homeLinks = [
{ path = ".ICAClient"; type = "data"; }
];
};
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ citrix_workspace ];
};

View file

@ -27,4 +27,5 @@
};
};
};
chvp.nix.unfreePackages = [ "dropbox" ];
}

View file

@ -5,7 +5,10 @@
home.packages = with pkgs; [ teams ];
};
chvp.zfs.homeLinks = [
{ path = ".config/Microsoft"; type = "data"; }
];
chvp = {
nix.unfreePackages = [ "teams" ];
zfs.homeLinks = [
{ path = ".config/Microsoft"; type = "data"; }
];
};
}