dot_testing/boxes/x230t/default.nix

19 lines
344 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
../../modules/discord.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
networking.hostName = "x230t";
system.stateVersion = "23.11";
}