translate-iso: add some documentation
This commit is contained in:
parent
3ea7ed0b98
commit
31295ab3b8
2 changed files with 23 additions and 3 deletions
21
images/translate-setup/README.md
Normal file
21
images/translate-setup/README.md
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
# Create a easy to use Image for translation
|
||||||
|
|
||||||
|
using [nixos-generators](https://github.com/nix-community/nixos-generators).
|
||||||
|
|
||||||
|
## generate easy to use iso
|
||||||
|
|
||||||
|
```
|
||||||
|
nixos-generate -f install-iso -c config.nix
|
||||||
|
```
|
||||||
|
|
||||||
|
## generate vmware image
|
||||||
|
|
||||||
|
```
|
||||||
|
nixos-generate -f vmware -c config.nix
|
||||||
|
```
|
||||||
|
|
||||||
|
## run locally using qcow
|
||||||
|
|
||||||
|
```
|
||||||
|
nixos-generate --run -c config.nix
|
||||||
|
```
|
|
@ -2,9 +2,8 @@
|
||||||
|
|
||||||
imports = [ ./x11.nix ];
|
imports = [ ./x11.nix ];
|
||||||
|
|
||||||
# no wifi
|
#networking.networkmanager.enable = true;
|
||||||
networking.networkmanager.enable = true;
|
#networking.wireless.enable = false;
|
||||||
#networking.wireless.enable = true;
|
|
||||||
|
|
||||||
# configuration
|
# configuration
|
||||||
environment.extraInit = ''
|
environment.extraInit = ''
|
||||||
|
|
Loading…
Reference in a new issue