Archived
1
0
forked from rarias/bscpkgs

Add xeon08 basic config

This commit is contained in:
2023-05-05 20:18:01 +02:00
parent fd1b467a60
commit a5c7205481
7 changed files with 152 additions and 0 deletions

13
xeon08/fs.nix Normal file
View File

@@ -0,0 +1,13 @@
{ ... }:
{
fileSystems."/nix" = {
device = "/dev/disk/by-label/optane";
fsType = "ext4";
neededForBoot = true;
};
fileSystems."/mnt/data" = {
device = "/dev/disk/by-label/data";
fsType = "ext4";
};
}