Add MacBook

This commit is contained in:
Bun 2025-03-08 05:36:01 -05:00
parent b3310802cb
commit 1b9bbe397e
12 changed files with 169 additions and 7 deletions

37
hosts/pear/default.nix Normal file
View file

@ -0,0 +1,37 @@
{ config, lib, ... }:
{
imports = [
./boot
./disko
./filesystems
./hardware
./users
../../modules/system
];
networking = {
hostName = "pear";
wg-quick.interfaces.wgc.address = [ "10.100.0.18/24" ];
};
system = {
desktop.enable = true;
#lanzaboote.enable = true;
fancyboot.enable = true;
wireless.enable = true;
wireguard.client.enable = true;
libvirtd.enable = true;
stateVersion = "24.11";
};
# Services to make this work as a school laptop
services.globalprotect.enable = true;
virtualisation.vmware.host.enable = true;
nixpkgs.allowUnfreePackages = [ "vmware-workstation" ];
environment.persistence."/persist".directories = [
"/home/${config.sysusers.main}/vmware"
"/home/${config.sysusers.main}/.vmware"
];
}