Add an arch specific partitioning scheme

This commit is contained in:
Manuel Thalmann 2024-06-22 22:51:26 +02:00
parent b78adb6df8
commit af05f04901
2 changed files with 12 additions and 6 deletions

View file

@ -1,11 +1,6 @@
{ ... }: {
imports = [
../partition.nix
../../../scripts/Arch/OS/partition.nix
];
config = {
partition.os.partitions = {
OS.label = "Arch";
};
};
}

View file

@ -0,0 +1,11 @@
{ ... }: {
imports = [
../../../lib/modules/partition.nix
];
config = {
partition.os.partitions = {
OS.label = "Arch";
};
};
}