what was i doing?

This commit is contained in:
Artemis Tosini 2024-05-23 04:50:19 +00:00
parent b1920c38f0
commit d75017a8a5
Signed by: artemist
GPG key ID: EE5227935FE3FF18
3 changed files with 46 additions and 0 deletions

2
nix/.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
result
result-*

15
nix/aarch64_be.nix Normal file
View file

@ -0,0 +1,15 @@
let
flake = builtins.getFlake (toString ./..);
nixpkgs = flake.inputs.nixpkgs;
lib = nixpkgs.lib;
system = lib.nixosSystem {
modules = [
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64-new-kernel-no-zfs-installer.nix"
{
nixpkgs.hostPlatform.config = "aarch64_be-unknown-linux-gnu";
nixpkgs.buildPlatform.system = "x86_64-linux";
nixpkgs.config.allowUnsupportedSystem = true;
}
];
};
in system.config.system.build.sdImage

29
typst/labels.typ Normal file
View file

@ -0,0 +1,29 @@
#{
set page(width: 3.5in, height: 1.125in, margin: 0em)
set par(leading: 0.2em)
let labels(contents) = {
for (idx, content) in contents.enumerate() {
if idx != 0 {
pagebreak()
}
place(
top + left,
dx: 12mm,
dy: 0in,
block(
width: 3.5in - 12mm,
height: 1in,
align(
center + horizon,
text(
font: "Bahnschrift",
size: 70pt,
content + "Ω"))))
}
}
labels((
"82", "27k"
))
}