This commit is contained in:
Daylin Morgan 2024-02-05 15:00:00 -06:00
parent f896349d13
commit 261328e55a
Signed by: daylin
GPG key ID: C1E52E7DD81DF79F
3 changed files with 12 additions and 7 deletions

View file

@ -1,16 +1,18 @@
{
inputs,
nixpkgs,
pkgs,
...
}: {
imports = [
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
# "${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
];
system = {
# Disable zstd compression
build.sdImage.compressImage = false;
};
# system = {
# # Disable zstd compression
# build.sdImage.compressImage = false;
# };
enviroment.systemPackages = with pkgs; [
git
];
security.sudo.wheelNeedsPassword = false;
}

View file

@ -39,4 +39,7 @@
users.users.daylin.extraGroups = [
"audio"
];
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
}

View file

@ -1,4 +1,4 @@
import std/[os, osproc, tables, times, strutils, terminal]
import std/[os, osproc, times, strutils, terminal]
from std/nativesockets import getHostname
let summaryFile = getEnv("GITHUB_STEP_SUMMARY")