dotfiles/hosts/lio/configuration.nix
RingOfStorms (Joshua Bell) 03465ab505 lio config in new style
2024-12-30 13:21:26 -06:00

24 lines
463 B
Nix

{
...
}:
{
# opening this port for dev purposes
networking.firewall.allowedTCPPorts = [
5173 # Vite
];
# machine specific configuration
# ==============================
hardware.enableAllFirmware = true;
# Connectivity
networking.networkmanager.enable = true;
hardware.bluetooth.enable = true;
environment.shellAliases = {
wifi = "nmtui";
};
# System76
hardware.system76.enableAll = true;
system.stateVersion = "23.11";
}