Adds native vm for testing.
This commit is contained in:
parent
2d507ae030
commit
00ad5f6c8c
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
||||||
result
|
result
|
||||||
sd-card.img
|
sd-card.img
|
||||||
|
clementine.qcow2
|
||||||
|
|
|
@ -1,17 +1,13 @@
|
||||||
{pkgs, ... }:
|
{pkgs, ... }:
|
||||||
{
|
{
|
||||||
boot.loader.raspberryPi.version = 3;
|
|
||||||
boot.initrd.kernelModules = [ "vc4" "bcm2835_dma" "i2c_bcm2835" ];
|
|
||||||
|
|
||||||
networking.hostName = "orange";
|
|
||||||
nixpkgs.hostPlatform.system = "aarch64-linux";
|
|
||||||
system.stateVersion = "23.05";
|
system.stateVersion = "23.05";
|
||||||
|
|
||||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||||
|
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
|
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
graphfix xorg.xauth xorg.xinit
|
xorg.xauth xorg.xinit
|
||||||
];
|
];
|
||||||
|
|
||||||
users = {
|
users = {
|
70
flake.nix
70
flake.nix
|
@ -6,7 +6,7 @@
|
||||||
flake-utils.url = "github:numtide/flake-utils";
|
flake-utils.url = "github:numtide/flake-utils";
|
||||||
colmena.url = "github:zhaofengli/colmena";
|
colmena.url = "github:zhaofengli/colmena";
|
||||||
|
|
||||||
graphfix.url = "git+https://git.sr.ht/~mtxyz/graphfix";
|
graphfix.url = "sourcehut:~mtxyz/graphfix";
|
||||||
graphfix.inputs.nixpkgs.follows = "nixpkgs";
|
graphfix.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -15,62 +15,42 @@
|
||||||
let
|
let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
overlays = [ inputs.colmena.overlay ];
|
overlays = [
|
||||||
|
inputs.graphfix.overlay
|
||||||
|
inputs.colmena.overlay
|
||||||
|
];
|
||||||
};
|
};
|
||||||
crossPkgs = pkgs.pkgsCross.aarch64-multiplatform;
|
clementine = nixpkgs.lib.nixosSystem {
|
||||||
in
|
inherit pkgs;
|
||||||
{
|
modules = [
|
||||||
|
./citrus.nix
|
||||||
|
./platforms/clementine.nix
|
||||||
|
];
|
||||||
|
};
|
||||||
|
in rec {
|
||||||
devShell = pkgs.mkShell {
|
devShell = pkgs.mkShell {
|
||||||
packages = with pkgs; [ colmena ];
|
packages = with pkgs; [ colmena ];
|
||||||
};
|
};
|
||||||
apps.default = {
|
packages.default = clementine.config.system.build.vm;
|
||||||
type = "app";
|
|
||||||
program = self.outputs.packages.${system}.vmscript + "/bin/vmscript";
|
|
||||||
};
|
|
||||||
packages.vmscript = pkgs.writeScriptBin "vmscript" ''
|
|
||||||
#!${pkgs.runtimeShell} -e
|
|
||||||
img=./sd-card.img
|
|
||||||
${pkgs.zstd}/bin/zstd -k -d ${self.outputs.image}/sd-image/orange.img.zst -o $img
|
|
||||||
chmod 640 $img
|
|
||||||
truncate -s 16G $img
|
|
||||||
${pkgs.qemu}/bin/qemu-system-aarch64 \
|
|
||||||
-machine raspi3b \
|
|
||||||
-kernel "${crossPkgs.ubootRaspberryPi3_64bit}/u-boot.bin" \
|
|
||||||
-cpu max \
|
|
||||||
-m 1G \
|
|
||||||
-smp 4 \
|
|
||||||
-drive file="$img",format=raw \
|
|
||||||
-nographic \
|
|
||||||
-serial null \
|
|
||||||
-serial mon:stdio
|
|
||||||
'';
|
|
||||||
}) // (let
|
}) // (let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
system = "aarch64-linux";
|
system = "aarch64-linux";
|
||||||
overlays = [ inputs.graphfix.overlay ];
|
overlays = [ inputs.graphfix.overlay ];
|
||||||
};
|
};
|
||||||
in rec {
|
|
||||||
colmena = {
|
|
||||||
meta = {
|
|
||||||
nixpkgs = pkgs;
|
|
||||||
};
|
|
||||||
orange = {
|
|
||||||
imports = [
|
|
||||||
./configuration.nix
|
|
||||||
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
|
||||||
];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
nixosConfigurations.orange = nixpkgs.lib.nixosSystem {
|
|
||||||
modules = [
|
modules = [
|
||||||
./configuration.nix
|
./citrus.nix
|
||||||
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
"${nixpkgs}/nixos/modules/installer/sd-card/sd-image-aarch64.nix"
|
||||||
{
|
./platforms/orange.nix
|
||||||
nixpkgs.overlays = [inputs.graphfix.overlay];
|
|
||||||
sdImage.imageName = "orange.img";
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
|
in {
|
||||||
|
colmena = {
|
||||||
|
meta.nixpkgs = pkgs;
|
||||||
|
orange = {
|
||||||
|
imports = modules;
|
||||||
};
|
};
|
||||||
image = nixosConfigurations.orange.config.system.build.sdImage;
|
};
|
||||||
|
orange = (nixpkgs.lib.nixosSystem {
|
||||||
|
inherit pkgs modules;
|
||||||
|
}).config.system.build.sdImage;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
4
platforms/clementine.nix
Normal file
4
platforms/clementine.nix
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
{pkgs, ...}:
|
||||||
|
{
|
||||||
|
networking.hostName = "clementine";
|
||||||
|
}
|
10
platforms/orange.nix
Normal file
10
platforms/orange.nix
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
{pkgs, ...}:
|
||||||
|
{
|
||||||
|
nixpkgs.hostPlatform.system = "aarch64-linux";
|
||||||
|
sdImage.imageName = "orange.img";
|
||||||
|
|
||||||
|
boot.loader.raspberryPi.version = 3;
|
||||||
|
boot.initrd.kernelModules = [ "vc4" "bcm2835_dma" "i2c_bcm2835" ];
|
||||||
|
|
||||||
|
networking.hostName = "orange";
|
||||||
|
}
|
Loading…
Reference in a new issue