From 9c5641e1a6c7d387be1af20672b3474d1eb84341 Mon Sep 17 00:00:00 2001 From: Elias Renman Date: Mon, 4 Dec 2023 11:37:43 +0100 Subject: [PATCH] chore: removed hardware-configuration --- hardware-configuration.nix | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 hardware-configuration.nix diff --git a/hardware-configuration.nix b/hardware-configuration.nix deleted file mode 100644 index 62f67a3..0000000 --- a/hardware-configuration.nix +++ /dev/null @@ -1,26 +0,0 @@ -# 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, ... }: - -{ - imports = [ ]; - - boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ]; - - boot.initrd.kernelModules = [ ]; - boot.kernelModules = [ ]; - boot.extraModulePackages = [ ]; - - fileSystems."/" = - { device = "/dev/disk/by-uuid/a261b267-738b-44a2-b91a-5c94d1082b57"; - fsType = "ext4"; - }; - - swapDevices = [ ]; - - networking.useDHCP = lib.mkDefault true; - - nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - virtualisation.virtualbox.guest.enable = true; -}