Set up bootloader and networking for lappy and general.

This commit is contained in:
jay
2025-06-29 19:10:12 -04:00
parent d37a350ca6
commit 82a93404ae
6 changed files with 54 additions and 24 deletions

View File

@@ -24,6 +24,7 @@
./system/bluetooth.nix
./system/environment.nix
./system/locale.nix
./system/networking.nix
./system/nixos.nix
./system/security.nix
./system/time.nix

View File

@@ -0,0 +1,5 @@
{ config, ...}: {
networking.networkmanager.enable = true;
networking.useDHCP = lib.mkDefault true;
}