mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
WIP
This commit is contained in:
parent
f896349d13
commit
261328e55a
3 changed files with 12 additions and 7 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -39,4 +39,7 @@
|
|||
users.users.daylin.extraGroups = [
|
||||
"audio"
|
||||
];
|
||||
|
||||
boot.binfmt.emulatedSystems = [ "aarch64-linux" ];
|
||||
}
|
||||
|
||||
|
|
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue