Ptocheia: init

This commit is contained in:
blahai 2025-01-27 16:06:11 +02:00
parent fd5dfbb57f
commit 6fc5cef4cb
Signed by: blahai
SSH key fingerprint: SHA256:ZfCryi+V64yG+vC1ZIIsqgvBCmA31tTi7RJ6M8CvpRc
3 changed files with 43 additions and 1 deletions

View file

@ -39,6 +39,11 @@ Helios:
- AMD Radeon 880M - AMD Radeon 880M
- 32GB LPDDR5X 7500MT/s - 32GB LPDDR5X 7500MT/s
Ptocheia:
- AMD r3 3250u
- 8GB ram
Epimethus: Epimethus:
- N/A - N/A

View file

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

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";}];
}