diff options
| author | Jeffrey C. Ollie <jeff@ocjtech.us> | 2025-01-15 11:56:19 -0600 |
|---|---|---|
| committer | Jeffrey C. Ollie <jeff@ocjtech.us> | 2025-01-15 11:56:19 -0600 |
| commit | 423133bc3c4151d2f289282b9c2bdf09bc84c9dd (patch) | |
| tree | 8942c1caa83ad56368a6a3b908ce23a11f18364a /flake.nix | |
| parent | 1ac56a7ac2552d2d9f2ee67f597a5c574670956a (diff) | |
nix: document how to create custom vms
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -61,9 +61,9 @@ apps.${system} = let runVM = ( - path: let + module: let vm = import ./nix/vm/create.nix { - inherit system path; + inherit system module; nixpkgs = nixpkgs-stable; overlay = self.overlays.debug; }; @@ -71,7 +71,7 @@ SHARED_DIR=$(pwd) export SHARED_DIR - ${vm.config.system.build.vm}/bin/run-ghostty-vm + ${pkgs-stable.lib.getExe vm.config.system.build.vm} "$@" ''; in { type = "app"; |
