mirror of
https://github.com/ivabus/nixos
synced 2024-11-22 16:35:06 +03:00
20 lines
357 B
Nix
20 lines
357 B
Nix
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
boot.loader.systemd-boot.enable = true;
|
|
boot.loader.efi.canTouchEfiVariables = true;
|
|
|
|
networking.hostName = "stella";
|
|
|
|
services.xserver.videoDrivers=["amdgpu"];
|
|
boot.initrd.kernelModules=["amdgpu"];
|
|
|
|
powerManagement = {
|
|
enable = true;
|
|
cpuFreqGovernor = "performance";
|
|
};
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|
|
|