2023-05-05 16:10:08 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
self,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib; let
|
|
|
|
psCfg = config.pub-solar;
|
|
|
|
xdg = config.home-manager.users."${psCfg.user.name}".xdg;
|
|
|
|
in {
|
2023-05-13 16:47:16 +00:00
|
|
|
config = {
|
|
|
|
environment = {
|
|
|
|
systemPackages = with pkgs; [
|
|
|
|
networkmanager-fortisslvpn
|
|
|
|
openfortivpn
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
programs._1password-gui = {
|
|
|
|
enable = true;
|
|
|
|
polkitPolicyOwners = ["teutat3s"];
|
|
|
|
};
|
|
|
|
programs._1password.enable = true;
|
|
|
|
|
|
|
|
home-manager = pkgs.lib.setAttrByPath ["users" psCfg.user.name] {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
zoom-us
|
|
|
|
slack
|
|
|
|
];
|
|
|
|
};
|
2023-05-05 16:10:08 +00:00
|
|
|
};
|
|
|
|
}
|