feat(photo01): init

This commit is contained in:
Constantin Gierczak--Galle 2024-11-21 18:39:34 +01:00
parent c0afb0657c
commit a5c1974e86
No known key found for this signature in database
5 changed files with 191 additions and 1 deletions

View 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";
}