feat(photo01): init
This commit is contained in:
parent
c0afb0657c
commit
a5c1974e86
5 changed files with 191 additions and 1 deletions
16
machines/photo01/_hardware-configuration.nix
Normal file
16
machines/photo01/_hardware-configuration.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ lib, modulesPath, ... }:
|
||||
|
||||
{
|
||||
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
|
||||
|
||||
boot.initrd.availableKernelModules =
|
||||
[ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
|
||||
boot.initrd.kernelModules = [ ];
|
||||
boot.kernelModules = [ ];
|
||||
boot.extraModulePackages = [ ];
|
||||
|
||||
networking.useDHCP = lib.mkDefault false;
|
||||
|
||||
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue