aboutsummaryrefslogtreecommitdiff
path: root/nix/profiles/hardware/synology.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix/profiles/hardware/synology.nix')
-rw-r--r--nix/profiles/hardware/synology.nix23
1 files changed, 0 insertions, 23 deletions
diff --git a/nix/profiles/hardware/synology.nix b/nix/profiles/hardware/synology.nix
deleted file mode 100644
index ad1fd3f..0000000
--- a/nix/profiles/hardware/synology.nix
+++ /dev/null
@@ -1,23 +0,0 @@
-{ lib, modulesPath, ... }:
-{
- imports = [
- (modulesPath + "/profiles/qemu-guest.nix")
- (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
- boot.initrd.availableKernelModules = [
- "ata_piix"
- "uhci_hcd"
- "virtio_pci"
- "virtio_scsi"
- "sd_mod"
- "sr_mod"
- ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
-
- swapDevices = [ ];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
-}