Add tips
All checks were successful
check / check (push) Successful in 28s

This commit is contained in:
Florian RICHER 2024-06-29 11:07:30 +02:00
parent e493646556
commit 4e8b840830
4 changed files with 88 additions and 55 deletions

24
tips/test_on_vm.md Normal file
View file

@ -0,0 +1,24 @@
## Configure VM
Configure VM
```nix
users.users.<user>.initialPassword = "<password>";
virtualisation.vmVariant = {
# following configuration is added only when building VM with build-vm
virtualisation = {
memorySize = <RAM in MiB>; # Use 8192MiB memory.
cores = <CPU Core number>;
# And more here https://github.com/NixOS/nixpkgs/blob/nixos-unstable/nixos/modules/virtualisation/qemu-vm.nix
};
};
```
Build
```bash
nixos-rebuild build-vm --flake .#nixos-test
```
Run
```bash
./result/bin/run-nixos-vm-vm
```