thelio76: fixes

This commit is contained in:
Alex 2024-08-04 13:11:11 -04:00
parent 162ee437db
commit 5780a111ae
3 changed files with 14 additions and 2 deletions

View File

@ -101,6 +101,13 @@
swapDevices =
[{ device = "/dev/disk/by-uuid/19de8142-e695-4425-a8cc-27e062204882"; }];
networking.firewall = {
enable = true;
allowedTCPPorts = [
8081 # for expo android
];
};
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction

View File

@ -14,7 +14,7 @@
height = "${theme.sizing.str.xxl}pt";
radius = 0;
override-redirect = true;
# override-redirect = true;
#;dpi = 96

View File

@ -97,6 +97,11 @@
users.users.alex = {
isNormalUser = true;
description = "Alex";
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
extraGroups = [
"networkmanager"
"wheel"
"libvirtd" # for qemu vms
"plugdev" # for android adb
];
};
}