commit 2a5b8f2f69abf1f6f123c00cdc16d7d16d10ad15 Author: lassulus Date: Tue Aug 8 19:48:43 2023 +0200 init diff --git a/README.md b/README.md new file mode 100644 index 0000000..1e78bb8 --- /dev/null +++ b/README.md @@ -0,0 +1,10 @@ +this is an example repo for nixos-anywhere and disko. +to run the interactive vm test run: +``` +nix run github:numtide/nixos-anywhere -- --flake '.#mysystem' --vm-test +``` + +you can also install the vm on some remote system when running +``` +nix run github:numtide/nixos-anywhere -- --flake '.#mysystem' root@192.168.0.10 +``` diff --git a/disk-configs/simple-efi.nix b/disk-configs/simple-efi.nix new file mode 100644 index 0000000..f19c758 --- /dev/null +++ b/disk-configs/simple-efi.nix @@ -0,0 +1,36 @@ +# Example to create a bios compatible gpt partition +{ lib, ... }: { + disko.devices.disk = { + one = { + device = lib.mkDefault "/dev/sda"; + type = "disk"; + content = { + type = "gpt"; + partitions = { + boot = { + name = "boot"; + size = "1M"; + type = "EF02"; + }; + ESP = { + size = "100M"; + type = "EF00"; + content = { + type = "filesystem"; + format = "vfat"; + mountpoint = "/boot"; + }; + }; + root = { + size = "100%"; + content = { + type = "filesystem"; + format = "ext4"; + mountpoint = "/"; + }; + }; + }; + }; + }; + }; +} diff --git a/flake.lock b/flake.lock new file mode 100644 index 0000000..a7f3be5 --- /dev/null +++ b/flake.lock @@ -0,0 +1,180 @@ +{ + "nodes": { + "disko": { + "inputs": { + "nixpkgs": [ + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1690751248, + "narHash": "sha256-al5+aqPKL2VtCnuMccafyl4hQqZn+xIaG7vLuhGWfvE=", + "owner": "nix-community", + "repo": "disko", + "rev": "67c4508ce9a778f429a5af3571f49733fd3e8a05", + "type": "github" + }, + "original": { + "owner": "nix-community", + "ref": "make-disk-image", + "repo": "disko", + "type": "github" + } + }, + "disko_2": { + "inputs": { + "nixpkgs": [ + "nixos-anywhere", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1687747614, + "narHash": "sha256-KXspKgtdO2YRL12Jv0sUgkwOwHrAFwdIG/90pDx8Ydg=", + "owner": "nix-community", + "repo": "disko", + "rev": "fef67a1ddc293b595d62a660f57deabbcb70ff95", + "type": "github" + }, + "original": { + "owner": "nix-community", + "ref": "master", + "repo": "disko", + "type": "github" + } + }, + "flake-parts": { + "inputs": { + "nixpkgs-lib": [ + "nixos-anywhere", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1687762428, + "narHash": "sha256-DIf7mi45PKo+s8dOYF+UlXHzE0Wl/+k3tXUyAoAnoGE=", + "owner": "hercules-ci", + "repo": "flake-parts", + "rev": "37dd7bb15791c86d55c5121740a1887ab55ee836", + "type": "github" + }, + "original": { + "owner": "hercules-ci", + "repo": "flake-parts", + "type": "github" + } + }, + "nixos-2305": { + "locked": { + "lastModified": 1687938137, + "narHash": "sha256-Z00c0Pk3aE1aw9x44lVcqHmvx+oX7dxCXCvKcUuE150=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "ba2ded3227a2992f2040fad4ba6f218a701884a5", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "release-23.05", + "repo": "nixpkgs", + "type": "github" + } + }, + "nixos-anywhere": { + "inputs": { + "disko": "disko_2", + "flake-parts": "flake-parts", + "nixos-2305": "nixos-2305", + "nixos-images": "nixos-images", + "nixpkgs": [ + "nixpkgs" + ], + "treefmt-nix": "treefmt-nix" + }, + "locked": { + "lastModified": 1691224484, + "narHash": "sha256-0oodXqRRHXjUL7ssi1nIOKC8EzYD4f1e3eAaWexuF4M=", + "owner": "numtide", + "repo": "nixos-anywhere", + "rev": "9df79870b04667f2d16f1a78a1ab87d124403fb7", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "nixos-anywhere", + "type": "github" + } + }, + "nixos-images": { + "inputs": { + "nixos-2305": [ + "nixos-anywhere", + "nixos-2305" + ], + "nixos-unstable": [ + "nixos-anywhere", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1686819168, + "narHash": "sha256-IbRVStbKoMC2fUX6TxNO82KgpVfI8LL4Cq0bTgdYhnY=", + "owner": "nix-community", + "repo": "nixos-images", + "rev": "ccc1a2c08ce2fc38bcece85d2a6e7bf17bac9e37", + "type": "github" + }, + "original": { + "owner": "nix-community", + "repo": "nixos-images", + "type": "github" + } + }, + "nixpkgs": { + "locked": { + "lastModified": 1691368598, + "narHash": "sha256-ia7li22keBBbj02tEdqjVeLtc7ZlSBuhUk+7XTUFr14=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "5a8e9243812ba528000995b294292d3b5e120947", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixos-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "disko": "disko", + "nixos-anywhere": "nixos-anywhere", + "nixpkgs": "nixpkgs" + } + }, + "treefmt-nix": { + "inputs": { + "nixpkgs": [ + "nixos-anywhere", + "nixpkgs" + ] + }, + "locked": { + "lastModified": 1687940979, + "narHash": "sha256-D4ZFkgIG2s9Fyi78T3fVG9mqMD+/UnFDB62jS4gjZKY=", + "owner": "numtide", + "repo": "treefmt-nix", + "rev": "0a4f06c27610a99080b69433873885df82003aae", + "type": "github" + }, + "original": { + "owner": "numtide", + "repo": "treefmt-nix", + "type": "github" + } + } + }, + "root": "root", + "version": 7 +} diff --git a/flake.nix b/flake.nix new file mode 100644 index 0000000..cf7a6c3 --- /dev/null +++ b/flake.nix @@ -0,0 +1,33 @@ +{ + inputs.nixpkgs.url = github:NixOS/nixpkgs/nixos-unstable; + + inputs.disko.url = github:nix-community/disko/make-disk-image; + inputs.disko.inputs.nixpkgs.follows = "nixpkgs"; + + inputs.nixos-anywhere.url = "github:numtide/nixos-anywhere"; + inputs.nixos-anywhere.inputs.nixpkgs.follows = "nixpkgs"; + + outputs = { self, nixpkgs, disko, nixos-anywhere, ... }@attrs: { + packages."x86_64-linux".makeDiskImageTest = disko.lib.lib.makeDiskImage { + nixosConfig = self.nixosConfigurations.mysystem; + }; + packages."x86_64-linux".makeDiskScriptTest = disko.lib.lib.makeDiskImageScript { + nixosConfig = self.nixosConfigurations.mysystem; + }; + nixosConfigurations.mysystem = nixpkgs.lib.nixosSystem { + system = "x86_64-linux"; + specialArgs = attrs; + modules = [ + (nixpkgs.outPath + "/nixos/modules/installer/scan/not-detected.nix") + disko.nixosModules.disko + ./disk-configs/simple-efi.nix # choose your favorite disk layout here + { + boot.loader.grub = { + efiSupport = true; + efiInstallAsRemovable = true; + }; + } + ]; + }; + }; +}