mirror of
https://github.com/blahai/nyx.git
synced 2025-01-18 19:10:21 +00:00
24 lines
398 B
Nix
24 lines
398 B
Nix
{
|
|
imports = [
|
|
./hardware.nix
|
|
./networking.nix
|
|
./overrides.nix
|
|
./services.nix
|
|
];
|
|
|
|
olympus = {
|
|
device = {
|
|
cpu = "vm-amd";
|
|
gpu = null;
|
|
};
|
|
system = {
|
|
boot = {
|
|
loader = "grub";
|
|
loadRecommendedModules = true;
|
|
enableKernelTweaks = true;
|
|
initrd.enableTweaks = true;
|
|
plymouth.enable = false;
|
|
};
|
|
};
|
|
};
|
|
}
|