Ptocheia: init

This commit is contained in:
blahai 2025-02-17 20:56:10 +02:00
parent 6d14e4fa24
commit 469c7f3651
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
4 changed files with 46 additions and 0 deletions

View file

@ -0,0 +1 @@
{}

View file

@ -57,6 +57,13 @@ in {
graphical graphical
]; ];
}; };
ptocheia = {
modules = [
laptop
graphical
];
};
}; };
}; };
} }

View file

@ -0,0 +1,21 @@
{
imports = [
./hardware.nix
];
olympus = {
device = {
cpu = "amd";
gpu = "amd";
};
system = {
boot = {
loader = "refind";
loadRecommendedModules = true;
enableKernelTweaks = true;
initrd.enableTweaks = true;
plymouth.enable = true;
};
};
};
}

View file

@ -0,0 +1,17 @@
{
fileSystems = {
"/" = {
device = "/dev/disk/by-label/root";
fsType = "ext4";
options = ["auto"];
};
"/boot" = {
device = "/dev/disk/by-label/BOOT";
fsType = "vfat";
options = ["fmask=0022" "dmask=0022"];
};
};
swapDevices = [{device = "/dev/disk/by-label/swap";}];
}