summaryrefslogtreecommitdiff
path: root/hardware-configuration.nix
diff options
context:
space:
mode:
authorandromeda <andromeda@lenovo>2025-12-30 11:33:37 +0100
committerandromeda <andromeda@lenovo>2025-12-30 11:34:27 +0100
commit424e2015ae671ad7c4409d201cad7b99abc34aa0 (patch)
tree8aab801a3e0e71bc32f85b19dffdbb9719274085 /hardware-configuration.nix
parent8daeb01ea96148d422750805592793d8bcbfae11 (diff)
parent9a089ea5090c72e363446b1576724edfbdb42c81 (diff)
bug fixes
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r--hardware-configuration.nix41
1 files changed, 0 insertions, 41 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix
deleted file mode 100644
index 2c0a93f..0000000
--- a/hardware-configuration.nix
+++ /dev/null
@@ -1,41 +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,
- modulesPath,
- ...
-}: {
- imports = [
- (modulesPath + "/installer/scan/not-detected.nix")
- ];
-
- boot.initrd.availableKernelModules = ["xhci_pci" "nvme" "sdhci_pci"];
- boot.initrd.kernelModules = [];
- boot.kernelModules = ["kvm-intel"];
- boot.extraModulePackages = [];
-
- fileSystems."/" = {
- device = "none";
- fsType = "tmpfs";
- options = ["defaults" "size=25%" "mode=755"];
- };
-
- fileSystems."/nix" = {
- device = "/dev/disk/by-uuid/0e586651-36f4-42b0-99b3-3f0704a894d6";
- fsType = "btrfs";
- };
-
- fileSystems."/boot" = {
- device = "/dev/disk/by-uuid/F425-55BA";
- fsType = "vfat";
- options = ["fmask=0022" "dmask=0022"];
- };
-
- swapDevices = [];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
-}