Add back VPN on laptop for school

This commit is contained in:
Jimbo 2025-02-25 05:39:25 -05:00
parent 1da098028f
commit 02bc93f444
9 changed files with 30 additions and 43 deletions

View file

@ -1,11 +1,9 @@
{ config, lib, ... }:
{
home-manager.users."${config.sysusers.main}" = {
home = {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
home-manager.users."${config.sysusers.main}".home = {
desktop.enable = true;
gaming.enable = true;
production.enable = true;
stateVersion = lib.mkForce config.system.stateVersion;
};
}