oizys/hosts/laukaz/default.nix

17 lines
268 B
Nix
Raw Normal View History

2024-02-05 12:29:04 -06:00
{
inputs,
2024-02-05 13:48:12 -06:00
nixpkgs,
2024-02-05 12:29:04 -06:00
pkgs,
...
}: {
2024-02-05 13:48:12 -06:00
imports = [
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
];
2024-02-05 12:29:04 -06:00
2024-02-05 13:48:12 -06:00
system = {
# Disable zstd compression
build.sdImage.compressImage = false;
};
2024-02-05 12:29:04 -06:00
security.sudo.wheelNeedsPassword = false;
}