mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-25 00:10:44 -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,
|
inputs,
|
||||||
nixpkgs,
|
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
# "${inputs.nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
||||||
];
|
];
|
||||||
|
|
||||||
system = {
|
# system = {
|
||||||
# Disable zstd compression
|
# # Disable zstd compression
|
||||||
build.sdImage.compressImage = false;
|
# build.sdImage.compressImage = false;
|
||||||
};
|
# };
|
||||||
|
enviroment.systemPackages = with pkgs; [
|
||||||
|
git
|
||||||
|
];
|
||||||
security.sudo.wheelNeedsPassword = false;
|
security.sudo.wheelNeedsPassword = false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -39,4 +39,7 @@
|
||||||
users.users.daylin.extraGroups = [
|
users.users.daylin.extraGroups = [
|
||||||
"audio"
|
"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
|
from std/nativesockets import getHostname
|
||||||
|
|
||||||
let summaryFile = getEnv("GITHUB_STEP_SUMMARY")
|
let summaryFile = getEnv("GITHUB_STEP_SUMMARY")
|
||||||
|
|
Loading…
Reference in a new issue