dot_testing/boxes/x230t/default.nix

21 lines
378 B
Nix
Raw Normal View History

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
];
2024-01-09 08:05:49 -06:00
hardware.pulseaudio.enable = true;
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";
}