oizys/hosts/laukaz/default.nix

19 lines
330 B
Nix
Raw Normal View History

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