This commit is contained in:
commit
95a533c876
451 changed files with 18255 additions and 0 deletions
96
templates/microvm/flake.nix
Normal file
96
templates/microvm/flake.nix
Normal file
|
|
@ -0,0 +1,96 @@
|
|||
{
|
||||
description = "MicroVM NixOS configurations";
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||
|
||||
microvm.url = "github:microvm-nix/microvm.nix";
|
||||
microvm.inputs.nixpkgs.follows = "nixpkgs";
|
||||
|
||||
synix.url = "git+https://git.sid.ovh/sid/synix.git?ref=release-25.11";
|
||||
synix.imputs.nixpkgs.follows = "nixpkgs";
|
||||
};
|
||||
|
||||
outputs =
|
||||
{
|
||||
self,
|
||||
nixpkgs,
|
||||
...
|
||||
}@inputs:
|
||||
let
|
||||
inherit (self) outputs;
|
||||
|
||||
supportedSystems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
];
|
||||
|
||||
forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
|
||||
|
||||
lib = nixpkgs.lib.extend (final: prev: inputs.synix.lib or { });
|
||||
|
||||
mkApp = program: description: {
|
||||
type = "app";
|
||||
inherit program;
|
||||
meta.description = description;
|
||||
};
|
||||
|
||||
mkNixosConfiguration =
|
||||
system: modules:
|
||||
nixpkgs.lib.nixosSystem {
|
||||
inherit system modules;
|
||||
specialArgs = {
|
||||
inherit inputs outputs lib;
|
||||
};
|
||||
};
|
||||
in
|
||||
{
|
||||
apps = forAllSystems (
|
||||
system:
|
||||
let
|
||||
microvm = self.nixosConfigurations."microvm-${system}".config.microvm;
|
||||
inherit (nixpkgs.lib) getExe;
|
||||
in
|
||||
{
|
||||
rebuild = mkApp (getExe microvm.deploy.rebuild) "Rebuild the VM.";
|
||||
microvm = mkApp (getExe microvm.declaredRunner) "Run the VM.";
|
||||
}
|
||||
);
|
||||
|
||||
packages = forAllSystems (
|
||||
system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
import ./pkgs { inherit pkgs; }
|
||||
);
|
||||
|
||||
overlays = import ./overlays { inherit (self) inputs; };
|
||||
|
||||
devShells = forAllSystems (
|
||||
system:
|
||||
let
|
||||
pkgs = nixpkgs.legacyPackages.${system};
|
||||
in
|
||||
{
|
||||
default = pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
tmux
|
||||
];
|
||||
};
|
||||
# FIXME: `microvm.deploy.rebuild` does not seem to care about askpass
|
||||
# shellHook = ''
|
||||
# export SSH_ASKPASS="pass <SUDO_BUILD_HOST_PASSWORD>"
|
||||
# export SSH_ASKPASS_REQUIRE="force"
|
||||
# '';
|
||||
}
|
||||
);
|
||||
|
||||
nixosModules = import ./modules;
|
||||
|
||||
nixosConfigurations = {
|
||||
microvm-x86_64-linux = mkNixosConfiguration "x86_64-linux" [ ./config ];
|
||||
microvm-aarch64-linux = mkNixosConfiguration "aarch64-linux" [ ./config ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue