Add an arch specific partitioning scheme

This commit is contained in:
Manuel Thalmann 2024-06-22 22:51:26 +02:00
commit d84e2a4740
2 changed files with 12 additions and 6 deletions
scripts/Arch/OS

View file

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