add wheatley stuff, and aarch64 emulation on GLaDOS

This commit is contained in:
Lillian Violet 2024-12-02 20:44:03 +01:00
parent 965fbba1eb
commit ef6fd0bafd
7 changed files with 125 additions and 82 deletions

View file

@ -12,11 +12,11 @@
imports = [
inputs.home-manager.nixosModules.home-manager
./armv7l.nix
./hardware-configuration.nix
# Import shared configurations
../../shared
# ../../../disko/wheatley
];
boot.loader.generic-extlinux-compatible.enable = true;
@ -78,20 +78,20 @@
};
networking.wireless.enable = true;
networking.wireless.environmentFile = config.sops.secrets."wireless.env".path;
networking.wireless.networks."KPNAA6306" = {
hidden = true;
auth = ''
key_mgmt=WPA-PSK
password="@PSK_HOME@"
'';
};
# networking.wireless.environmentFile = config.sops.secrets."wireless.env".path;
# networking.wireless.networks."KPNAA6306" = {
# hidden = true;
# auth = ''
# key_mgmt=WPA-PSK
# password="@PSK_HOME@"
# '';
# };
networking.firewall.enable = true;
networking.firewall = {
allowedTCPPorts = [22 80 443 5335 8080];
allowedUDPPorts = [5335];
allowedTCPPorts = [22 80 443 5335 8080 46899 46898];
allowedUDPPorts = [5335 46899 46898];
};
# Set your time zone.
time.timeZone = "Europe/Amsterdam";