nixos-config/configurations/citrix.nix
Charlotte Van Petegem 57ffb35d8e
Update dependencies
2021-04-26 19:11:41 +02:00

18 lines
464 B
Nix

{ ... }: {
chvp = {
nix.unfreePackages = [ "citrix-workspace" ];
zfs.homeLinks = [
{ path = ".ICAClient"; type = "data"; }
];
};
nixpkgs.overlays = [
(self: super: {
citrix_workspace = super.citrix_workspace.overrideAttrs (old: {
buildInputs = old.buildInputs ++ [ self.libdrm self.mesa ];
});
})
];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ citrix_workspace ];
};
}