18 lines
400 B
Nix
18 lines
400 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
home = lib.mkIf config.home.school.enable {
|
|
packages = with pkgs; [
|
|
freerdp
|
|
globalprotect-openconnect
|
|
gpauth
|
|
remmina
|
|
teams-for-linux
|
|
];
|
|
persistence."/persist${config.home.homeDirectory}".directories = [
|
|
".cache/gpclient"
|
|
".config/com.yuezk.qt"
|
|
".config/remmina"
|
|
".config/teams-for-linux"
|
|
];
|
|
};
|
|
}
|