22 lines
337 B
Nix
22 lines
337 B
Nix
|
{
|
||
|
imports = [
|
||
|
./hardware.nix
|
||
|
];
|
||
|
|
||
|
olympus = {
|
||
|
device = {
|
||
|
cpu = "amd";
|
||
|
gpu = "amd";
|
||
|
};
|
||
|
system = {
|
||
|
boot = {
|
||
|
loader = "refind";
|
||
|
loadRecommendedModules = true;
|
||
|
enableKernelTweaks = true;
|
||
|
initrd.enableTweaks = true;
|
||
|
plymouth.enable = true;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|