Add an arch specific partitioning scheme
This commit is contained in:
parent
d919d2b6b9
commit
d84e2a4740
2 changed files with 12 additions and 6 deletions
|
@ -1,11 +1,6 @@
|
||||||
{ ... }: {
|
{ ... }: {
|
||||||
imports = [
|
imports = [
|
||||||
../partition.nix
|
../partition.nix
|
||||||
|
../../../scripts/Arch/OS/partition.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
config = {
|
|
||||||
partition.os.partitions = {
|
|
||||||
OS.label = "Arch";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
11
scripts/Arch/OS/partition.nix
Normal file
11
scripts/Arch/OS/partition.nix
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
{ ... }: {
|
||||||
|
imports = [
|
||||||
|
../../../lib/modules/partition.nix
|
||||||
|
];
|
||||||
|
|
||||||
|
config = {
|
||||||
|
partition.os.partitions = {
|
||||||
|
OS.label = "Arch";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue