2024-01-07 22:16:14 -06:00
|
|
|
{ lib, config, pkgs, ...}:
|
|
|
|
|
|
|
|
{
|
|
|
|
imports = [
|
|
|
|
./hardware-configuration.nix
|
|
|
|
../../modules/bootstrap.nix
|
|
|
|
../../modules/common.nix
|
|
|
|
../../modules/x11.nix
|
2024-01-08 20:32:59 -06:00
|
|
|
../../modules/tlp.nix
|
2024-01-07 22:16:14 -06:00
|
|
|
];
|
|
|
|
|
|
|
|
boot.loader.grub.enable = true;
|
|
|
|
boot.loader.grub.device = "/dev/sda";
|
|
|
|
|
|
|
|
networking.hostName = "x230t";
|
|
|
|
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
}
|