mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 10:13:14 -06:00
16 lines
268 B
Nix
16 lines
268 B
Nix
{
|
|
inputs,
|
|
nixpkgs,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
|
];
|
|
|
|
system = {
|
|
# Disable zstd compression
|
|
build.sdImage.compressImage = false;
|
|
};
|
|
security.sudo.wheelNeedsPassword = false;
|
|
}
|