Trying To Figure Out Boot Things

This commit is contained in:
Annika Merris 2024-05-18 13:07:12 -04:00
parent 45a1303eaa
commit 9d5d45f02f
2 changed files with 3 additions and 0 deletions

View file

@ -23,6 +23,7 @@ inputs.nixpkgs.lib.nixosSystem {
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
boot.loader.grub.device = "/dev/vda";
services.xserver.videoDrivers = [ "amdgpu" ]; # TODO: I use wayland, do I need this?
hardware.enableRedistributableFirmware = true;
powerManagement.cpuFreqGovernor = "performance";
@ -42,6 +43,8 @@ inputs.nixpkgs.lib.nixosSystem {
# TODO: passwordHash = nixpkgs.lib.fileContents ../../password.sha512;
# Theming?
system.stateVersion = "23.11";
}
];
}

View file