nixos/machines/stella/configuration.nix
Ivan Bushchik ffc7d9fdf2
Refactor configuration
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-07-30 12:44:50 +03:00

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";
}