dotfiles/hosts/lio/configuration.nix
RingOfStorms (Joshua Bell) 4998f85fa5 updates
2025-02-18 00:57:25 -06:00

27 lines
646 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;
# https://discourse.nixos.org/t/very-high-fan-noises-on-nixos-using-a-system76-thelio/23875/10
# Fixes insane jet speed fan noise
services.power-profiles-daemon.enable = false;
system.stateVersion = "23.11";
}