aboutsummaryrefslogtreecommitdiff
path: root/hardware-configuration.nix
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-04-01 08:50:57 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-04-01 08:50:57 +0530
commit6f836a75007c7d41fa549de78769845d7c9c2a7f (patch)
treeb859cbdd699bc12baecb5626bc47f458df709267 /hardware-configuration.nix
parent4cc5d96857c4fec772acee99e7e124058690a365 (diff)
proper aliases
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r--hardware-configuration.nix46
1 files changed, 46 insertions, 0 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix
index e69de29..019ac6d 100644
--- a/hardware-configuration.nix
+++ b/hardware-configuration.nix
@@ -0,0 +1,46 @@
+# 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" "thunderbolt" "nvme" ];
+ boot.initrd.kernelModules = [ ];
+ boot.kernelModules = [ "kvm-intel" ];
+ boot.extraModulePackages = [ ];
+
+ fileSystems."/" =
+ { device = "/dev/disk/by-uuid/aadeb47f-49f3-4052-b061-6d02fd0165cb";
+ fsType = "ext4";
+ };
+
+ fileSystems."/boot/efi" =
+ { device = "/dev/disk/by-uuid/111C-A2C4";
+ fsType = "vfat";
+ options = [ "fmask=0022" "dmask=0022" ];
+ };
+
+ fileSystems."/var/lib/docker/overlay2/4644c4a5a2b1c4a0cb4542e69c9532a324f9dba60040695760d0222a1cb161e8/merged" =
+ { device = "overlay";
+ fsType = "overlay";
+ };
+
+ fileSystems."/var/lib/docker/overlay2/9cbb4669695d642dd03b76ef59374502793490f8c64404a1dc1342641742f789/merged" =
+ { device = "overlay";
+ fsType = "overlay";
+ };
+
+ fileSystems."/var/lib/docker/overlay2/b6ee16857d614f1210c4bd29c841ddd901fd7ccdc6b0370045311774611eed47/merged" =
+ { device = "overlay";
+ fsType = "overlay";
+ };
+
+ swapDevices = [ ];
+
+ nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
+ hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
+}