29 lines
631 B
Nix
29 lines
631 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
imports =
|
|
[ # Include the results of the hardware scan.
|
|
./hardware-configuration.nix
|
|
../../roles/all.nix
|
|
../../roles/laptop.nix
|
|
../../modules/luks.nix
|
|
../../modules/grub.nix
|
|
../../modules/k40.nix
|
|
|
|
# import hardware specific settings
|
|
<nixos-hardware/lenovo/thinkpad/x270>
|
|
];
|
|
|
|
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?
|
|
|
|
# Only 1080p :(
|
|
my.highDPI = false;
|
|
|
|
}
|
|
|