Add theia stuffies

This commit is contained in:
blahai 2025-01-12 22:44:11 +02:00
parent 452e600c5f
commit ad09e551fd
No known key found for this signature in database
11 changed files with 135 additions and 2 deletions

View file

@ -6,7 +6,7 @@
inherit (config.olympus) device;
inherit (lib.modules) mkIf;
in {
config = mkIf (device.cpu == "amd") {
config = mkIf (device.cpu == "amd" || device.cpu == "vm-amd") {
hardware.cpu.amd.updateMicrocode = true;
boot.kernelModules = [

View file

@ -9,6 +9,7 @@ in {
type = types.nullOr (
types.enum [
"amd"
"vm-amd"
]
);
default = null;