fix: work on making the installer work offline

This commit is contained in:
UGA Innovation Factory
2026-01-05 11:58:38 -05:00
parent c2b5e4eafe
commit c6f4a39eee
4 changed files with 25 additions and 3 deletions

View File

@@ -34,6 +34,11 @@
type = lib.types.str;
description = "The main disk device to use for installation.";
};
useSwap = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to create and use a swap partition.";
};
swapSize = lib.mkOption {
type = lib.types.str;
description = "The size of the swap partition.";
@@ -115,7 +120,7 @@
};
# Swap Partition (size configurable per host)
swap = {
swap = lib.mkIf config.athenix.host.filesystem.useSwap {
name = "swap";
label = "swap";
size = config.athenix.host.filesystem.swapSize;

View File

@@ -37,7 +37,7 @@
];
# ========== Filesystem Configuration ==========
athenix.host.filesystem.swapSize = lib.mkDefault "0G";
athenix.host.filesystem.useSwap = lib.mkDefault false;
athenix.host.filesystem.device = lib.mkDefault "/dev/mmcblk0";
athenix.host.buildMethods = lib.mkDefault [ "installer-iso" ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";