PortValhalla/profiles/DerGeret/config.nix

42 lines
726 B
Nix
Raw Normal View History

{ ... }: {
imports = [
2024-07-07 23:47:23 +00:00
../Generic/config.nix
];
config = {
2024-07-28 15:14:38 +00:00
valhalla = {
windows = {
dualboot = {
enable = true;
2024-08-07 23:51:21 +00:00
linuxPercentage = 30;
2024-07-28 15:14:38 +00:00
};
};
partition.os.partitions = {
Boot.keepExisting = true;
2024-07-28 15:14:38 +00:00
Windows = {
index = 6;
label = "OS";
format = "ntfs";
mountPoint = "/win";
mountOptions = ["force"];
keepExisting = true;
};
};
2024-08-06 15:23:20 +00:00
hardware = {
components = [
"ROG Zenith Extreme Alpha"
];
eyeX = true;
amdCPU = true;
nvidiaGPU = true;
2024-08-07 23:51:21 +00:00
corsairDevice = true;
2024-08-06 15:23:20 +00:00
elgatoWave = true;
};
};
};
}