Compare commits

..

No commits in common. "27f3ca7c0cc6c27c4256c24f73f1b6e077c55c7c" and "b5c30f5da73719434e75ded3b0976be9f8705aa1" have entirely different histories.

3 changed files with 6 additions and 1 deletions

View file

@ -13,6 +13,7 @@
"cups-brother-hl3140cw" "cups-brother-hl3140cw"
"uhk-agent" "uhk-agent"
"uhk-udev-rules" "uhk-udev-rules"
"zoom"
]; ];
nix = { nix = {

View file

@ -28,7 +28,7 @@ in {
networking.wireguard.interfaces = { networking.wireguard.interfaces = {
wg-ehex = { wg-ehex = {
listenPort = 51822; listenPort = 51821;
mtu = 1300; mtu = 1300;
ips = cfg.ownIPs; ips = cfg.ownIPs;
privateKeyFile = cfg.privateKeyFile; privateKeyFile = cfg.privateKeyFile;

View file

@ -10,6 +10,10 @@ with lib; let
xdg = config.home-manager.users."${psCfg.user.name}".xdg; xdg = config.home-manager.users."${psCfg.user.name}".xdg;
in { in {
home-manager.users."${psCfg.user.name}" = { home-manager.users."${psCfg.user.name}" = {
home.packages = [
pkgs.zoom-us
];
programs.bash.initExtra = '' programs.bash.initExtra = ''
source ${config.age.secrets.b12f-env-secrets.path} source ${config.age.secrets.b12f-env-secrets.path}
''; '';