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-15 03:52:45 -06:00
|
|
|
../../modules/media.nix
|
|
|
|
../../modules/anki.nix
|
|
|
|
../../modules/power-control.nix
|
2024-01-07 22:16:14 -06:00
|
|
|
];
|
|
|
|
|
2024-01-15 03:52:45 -06:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
xscreensaver
|
|
|
|
];
|
|
|
|
|
|
|
|
services.getty.autologinUser = "usr";
|
|
|
|
|
|
|
|
boot.loader = {
|
|
|
|
grub.timeoutStyle = "hidden";
|
|
|
|
timeout = 0;
|
|
|
|
grub.enable = true;
|
|
|
|
grub.device = "/dev/sda";
|
|
|
|
};
|
|
|
|
|
2024-01-09 08:05:49 -06:00
|
|
|
hardware.pulseaudio.enable = true;
|
|
|
|
|
2024-01-07 22:16:14 -06:00
|
|
|
|
|
|
|
networking.hostName = "x230t";
|
|
|
|
|
|
|
|
system.stateVersion = "23.11";
|
|
|
|
}
|