mirror of
https://github.com/blahai/nyx.git
synced 2025-01-19 03:20:20 +00:00
22 lines
347 B
Nix
22 lines
347 B
Nix
|
{
|
||
|
imports = [
|
||
|
./hardware.nix
|
||
|
];
|
||
|
|
||
|
olympus = {
|
||
|
device = {
|
||
|
cpu = "amd";
|
||
|
gpu = "nvidia";
|
||
|
};
|
||
|
system = {
|
||
|
boot = {
|
||
|
loader = "systemd-boot";
|
||
|
loadRecommendedModules = true;
|
||
|
enableKernelTweaks = true;
|
||
|
initrd.enableTweaks = true;
|
||
|
plymouth.enable = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|