diff options
| author | beeb5k <beebeeb5k@gmail.com> | 2026-09-02 10:16:21 +0530 |
|---|---|---|
| committer | beeb5k <beebeeb5k@gmail.com> | 2026-09-02 10:16:21 +0530 |
| commit | c38acc6dce1075ae7e73dedf018be69202900054 (patch) | |
| tree | ce676853cff426c6b5d41c7e7930d1e20c41fe11 /hosts/oixos/hardware-configuration.nix | |
| parent | ca4cff791d8cc0fec5a487cd50229d299ddd0d24 (diff) | |
oixos
Diffstat (limited to 'hosts/oixos/hardware-configuration.nix')
| -rw-r--r-- | hosts/oixos/hardware-configuration.nix | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/hosts/oixos/hardware-configuration.nix b/hosts/oixos/hardware-configuration.nix new file mode 100644 index 0000000..bddf5a4 --- /dev/null +++ b/hosts/oixos/hardware-configuration.nix @@ -0,0 +1,28 @@ +# Do not modify this file! It was generated by ‘nixos-generate-config’ +# and may be overwritten by future invocations. Please make changes +# to /etc/nixos/configuration.nix instead. +{ + config, + lib, + pkgs, + modulesPath, + ... +}: + +{ + imports = [ + (modulesPath + "/profiles/qemu-guest.nix") + ]; + + boot.initrd.availableKernelModules = [ + "xhci_pci" + "virtio_pci" + "virtio_scsi" + "usbhid" + ]; + boot.initrd.kernelModules = [ ]; + boot.kernelModules = [ ]; + boot.extraModulePackages = [ ]; + + nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux"; +} |
