2022-06-04 23:49:27 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
|
|
imports =
|
|
|
|
[ # Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../roles/all.nix
|
2022-06-21 13:34:34 +00:00
|
|
|
../../roles/laptop.nix
|
|
|
|
../../modules/luks.nix
|
|
|
|
../../modules/grub.nix
|
2022-06-04 23:49:27 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
networking.hostName = "milhouse"; # Define your hostname.
|
|
|
|
|
|
|
|
networking.useDHCP = false;
|
|
|
|
networking.networkmanager.enable = true;
|
|
|
|
programs.nm-applet.enable = true;
|
|
|
|
|
|
|
|
system.stateVersion = "21.11"; # Did you read the comment?
|
|
|
|
|
|
|
|
}
|
|
|
|
|