Update dependencies

This commit is contained in:
Charlotte Van Petegem 2021-04-26 19:11:41 +02:00
parent 21dbe4c195
commit 57ffb35d8e
No known key found for this signature in database
GPG key ID: 019E764B7184435A
3 changed files with 20 additions and 12 deletions

View file

@ -5,6 +5,13 @@
{ 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 ];
};