nix-config/devices/pleniscenta/default.nix
2024-06-02 14:15:08 +02:00

26 lines
390 B
Nix

{ ... }: {
imports = [
./hardware-config.nix
./options.nix
];
networking.hostName = "akarso";
boot.loader = {
systemd-boot = {
enable = true;
};
efi.canTouchEfiVariables = true;
};
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
services.thermald.enable = true;
system.stateVersion = "23.05";
}