From 261328e55aa87350867342b8ff6f661e6decacd1 Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Mon, 5 Feb 2024 15:00:00 -0600 Subject: [PATCH] WIP --- hosts/laukaz/default.nix | 14 ++++++++------ hosts/othalan/default.nix | 3 +++ oizys/oizys.nim | 2 +- 3 files changed, 12 insertions(+), 7 deletions(-) diff --git a/hosts/laukaz/default.nix b/hosts/laukaz/default.nix index feec813..c2b3a56 100644 --- a/hosts/laukaz/default.nix +++ b/hosts/laukaz/default.nix @@ -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; } diff --git a/hosts/othalan/default.nix b/hosts/othalan/default.nix index e02080b..190360a 100644 --- a/hosts/othalan/default.nix +++ b/hosts/othalan/default.nix @@ -39,4 +39,7 @@ users.users.daylin.extraGroups = [ "audio" ]; + + boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; } + diff --git a/oizys/oizys.nim b/oizys/oizys.nim index 1af45f3..8a47972 100644 --- a/oizys/oizys.nim +++ b/oizys/oizys.nim @@ -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")