summaryrefslogtreecommitdiff
path: root/hardware-configuration.nix
diff options
context:
space:
mode:
authorozpv <39195175+ozpv@users.noreply.github.com>2026-05-30 21:06:53 -0500
committerozpv <39195175+ozpv@users.noreply.github.com>2026-05-30 21:06:53 -0500
commit7395bbde16b6816f6823189a9c37f8d9a6fbf82c (patch)
tree5a81968a619867865810b05d279ac7144e9ced5c /hardware-configuration.nix
parentccff75ce40f47d233ccbda36e11648ff6f841b35 (diff)
change to self-hosted gitmain
Diffstat (limited to 'hardware-configuration.nix')
-rw-r--r--hardware-configuration.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/hardware-configuration.nix b/hardware-configuration.nix
deleted file mode 100644
index a925e9b..0000000
--- a/hardware-configuration.nix
+++ /dev/null
@@ -1,31 +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 = [ "nvme" "xhci_pci" "thunderbolt" ];
- boot.initrd.kernelModules = [ ];
- boot.kernelModules = [ "kvm-amd" ];
- boot.extraModulePackages = [ ];
-
- fileSystems."/" =
- { device = "/dev/disk/by-uuid/2e9244f1-463e-465a-914e-28ab18837d77";
- fsType = "ext4";
- };
-
- fileSystems."/boot" =
- { device = "/dev/disk/by-uuid/C0B5-C3DE";
- fsType = "vfat";
- options = [ "fmask=0077" "dmask=0077" ];
- };
-
- swapDevices = [ ];
-
- nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
- hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
-}