From c2e862ad1a1d98c15762eeeb63af16f68235ac65 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Sat, 22 Jun 2024 20:54:15 +0200 Subject: [PATCH] Add arch specific partitioning settings --- profiles/DerGeret/Arch/partition.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 profiles/DerGeret/Arch/partition.nix diff --git a/profiles/DerGeret/Arch/partition.nix b/profiles/DerGeret/Arch/partition.nix new file mode 100644 index 000000000..6eb13fecc --- /dev/null +++ b/profiles/DerGeret/Arch/partition.nix @@ -0,0 +1,11 @@ +{ ... }: { + imports = [ + ../partition.nix + ]; + + config = { + partition.os.partitions = { + OS.label = "Arch"; + }; + }; +}