dotfiles/hosts/h002/configuration.nix
RingOfStorms (Joshua Bell) 998e9ac2fc h002 new config
2025-01-02 01:40:54 -06:00

19 lines
383 B
Nix

{
pkgs,
...
}:
{
# machine specific configuration
# ==============================
hardware.enableAllFirmware = true;
# Connectivity
networking.networkmanager.enable = true;
hardware.bluetooth.enable = true;
environment.shellAliases = {
wifi = "nmtui";
};
environment.systemPackages = with pkgs; [ nvtopPackages.full ];
system.stateVersion = "23.11";
}