Variablize username in Envy

This commit is contained in:
Jimbo 2025-03-03 01:49:45 -05:00
parent 57e11afb22
commit 7c63474ac7

View file

@ -24,12 +24,14 @@
stateVersion = "24.11"; stateVersion = "24.11";
}; };
# Services to make this work as a school laptop
services.globalprotect.enable = true; services.globalprotect.enable = true;
virtualisation.vmware.host.enable = true; virtualisation.vmware.host.enable = true;
nixpkgs.allowUnfreePackages = [ "vmware-workstation" ]; nixpkgs.allowUnfreePackages = [ "vmware-workstation" ];
environment.persistence."/persist".directories = [ environment.persistence."/persist".directories = [
"/home/jimbo/.vmware" "/home/${config.sysusers.main}/vmware"
"/home/jimbo/vmware" "/home/${config.sysusers.main}/.vmware"
]; ];
} }