mirror of
https://github.com/blahai/nyx.git
synced 2025-02-22 15:45:09 +00:00
Ptocheia: init
This commit is contained in:
parent
fd5dfbb57f
commit
6fc5cef4cb
3 changed files with 43 additions and 1 deletions
|
@ -39,6 +39,11 @@ Helios:
|
|||
- AMD Radeon 880M
|
||||
- 32GB LPDDR5X 7500MT/s
|
||||
|
||||
Ptocheia:
|
||||
|
||||
- AMD r3 3250u
|
||||
- 8GB ram
|
||||
|
||||
Epimethus:
|
||||
|
||||
- N/A
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
17
systems/ptocheia/hardware.nix
Normal file
17
systems/ptocheia/hardware.nix
Normal 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";}];
|
||||
}
|
Loading…
Add table
Reference in a new issue