Files
soupclown/hardware-configuration.nix
T
qdev ef4883bb3b Nixtime => main (#26)
* add users nix file

* add element

* add buld thing and config

* remove hyper cuz broken and fix build script

* Fix nix builds (keep em from explodin)

* add flake

* using flakes now I guess?

* add hardware configuration for now I guess?

* no homemanager yet

* home manager module?
2026-03-12 23:26:33 -04:00

36 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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/mapper/luks-ca82dbc3-42a8-4582-99b6-0b6d271dc897";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-ca82dbc3-42a8-4582-99b6-0b6d271dc897".device = "/dev/disk/by-uuid/ca82dbc3-42a8-4582-99b6-0b6d271dc897";
fileSystems."/boot" =
{ device = "/dev/disk/by-uuid/5C65-493B";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
swapDevices =
[ { device = "/dev/mapper/luks-df4da4a4-149f-433d-a0c9-efcb7f3acc52"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}