19 lines
383 B
Nix
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";
|
|
}
|