nix-config/devices/pleniscenta/default.nix
Sanjay Chacku Purakal 094a78d337
Update state version
2024-06-02 18:47:01 +02:00

28 lines
450 B
Nix

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