thelio76: fixes
This commit is contained in:
parent
162ee437db
commit
5780a111ae
|
@ -101,6 +101,13 @@
|
||||||
swapDevices =
|
swapDevices =
|
||||||
[{ device = "/dev/disk/by-uuid/19de8142-e695-4425-a8cc-27e062204882"; }];
|
[{ 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
|
# 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
|
# (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
|
# still possible to use this option, but it's recommended to use it in conjunction
|
||||||
|
|
|
@ -14,7 +14,7 @@
|
||||||
height = "${theme.sizing.str.xxl}pt";
|
height = "${theme.sizing.str.xxl}pt";
|
||||||
radius = 0;
|
radius = 0;
|
||||||
|
|
||||||
override-redirect = true;
|
# override-redirect = true;
|
||||||
|
|
||||||
#;dpi = 96
|
#;dpi = 96
|
||||||
|
|
||||||
|
|
|
@ -97,6 +97,11 @@
|
||||||
users.users.alex = {
|
users.users.alex = {
|
||||||
isNormalUser = true;
|
isNormalUser = true;
|
||||||
description = "Alex";
|
description = "Alex";
|
||||||
extraGroups = [ "networkmanager" "wheel" "libvirtd" ];
|
extraGroups = [
|
||||||
|
"networkmanager"
|
||||||
|
"wheel"
|
||||||
|
"libvirtd" # for qemu vms
|
||||||
|
"plugdev" # for android adb
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue