forked from Mirrors/nixos-infect
Added cockbox support and documentation (#103)
* Added required modules for Cockbox * Added cockbox to the docs
This commit is contained in:
parent
90dbc4b073
commit
95c32c17ae
2 changed files with 10 additions and 0 deletions
|
@ -16,6 +16,7 @@ This script has successfully been tested on at least the follow hosting provider
|
||||||
* [OVHcloud](https://www.ovh.com/)
|
* [OVHcloud](https://www.ovh.com/)
|
||||||
* [Oracle Cloud Infrastructure](https://www.oracle.com/cloud/)
|
* [Oracle Cloud Infrastructure](https://www.oracle.com/cloud/)
|
||||||
* [GalaxyGate](https://galaxygate.net)
|
* [GalaxyGate](https://galaxygate.net)
|
||||||
|
* [Cockbox](https://cockbox.org)
|
||||||
|
|
||||||
Should you find that it works on your hoster,
|
Should you find that it works on your hoster,
|
||||||
feel free to update this README and issue a pull request.
|
feel free to update this README and issue a pull request.
|
||||||
|
@ -211,3 +212,11 @@ Aliyun ECS tested on ecs.s6-c1m2.large, region **cn-shanghai**, needs a little b
|
||||||
|Distribution| Name | Status | test date|
|
|Distribution| Name | Status | test date|
|
||||||
|------------|-----------------|-----------|----------|
|
|------------|-----------------|-----------|----------|
|
||||||
|Ubuntu | 20.04 |**success**|2022-04-02|
|
|Ubuntu | 20.04 |**success**|2022-04-02|
|
||||||
|
|
||||||
|
|
||||||
|
### Cockbox
|
||||||
|
Requred some Xen modules to work out, after that NixOS erected itself without a hinch.
|
||||||
|
#### Tested on
|
||||||
|
|Distribution| Name | Status | test date|
|
||||||
|
|------------|-----------------|-----------|----------|
|
||||||
|
|Ubuntu | 20.04 |**success**|2022-06-12|
|
||||||
|
|
|
@ -60,6 +60,7 @@ EOF
|
||||||
{
|
{
|
||||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||||||
$bootcfg
|
$bootcfg
|
||||||
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
|
||||||
boot.initrd.kernelModules = [ "nvme" ];
|
boot.initrd.kernelModules = [ "nvme" ];
|
||||||
fileSystems."/" = { device = "$rootfsdev"; fsType = "$rootfstype"; };
|
fileSystems."/" = { device = "$rootfsdev"; fsType = "$rootfstype"; };
|
||||||
$swapcfg
|
$swapcfg
|
||||||
|
|
Loading…
Reference in a new issue