mirror of
https://github.com/ivabus/nixos
synced 2024-11-14 20:45:08 +03:00
16 lines
273 B
Nix
16 lines
273 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"];
|
||
|
|
||
|
system.stateVersion = "23.05";
|
||
|
}
|
||
|
|