Update dependencies

This commit is contained in:
Charlotte Van Petegem 2023-02-14 15:55:49 +01:00
parent 5dc8b4ed71
commit 180f7fdca8
No known key found for this signature in database
GPG key ID: 019E764B7184435A
3 changed files with 34 additions and 16 deletions

View file

@ -8,14 +8,13 @@
config = lib.mkIf config.chvp.work.teams.enable {
chvp.base = {
nix.unfreePackages = [ "teams" ];
zfs.homeLinks = [
{ path = ".config/Microsoft"; type = "data"; }
{ path = ".config/teams-for-linux"; type = "cache"; }
];
};
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ teams ];
home.packages = with pkgs; [ teams-for-linux ];
};
};
}