Files
nixos/hosts/thinix-thinkpad/hardware-configuration.nix
Jonas Hahn 877b8fbb35 auto up 00:24:13 up 0:32, 2 users, load average: 0.84, 0.77, 0.74
auto up  01:08:17  up   6:30,  2 users,  load average: 0.62, 0.57, 0.51

auto up  01:59:20  up   7:21,  2 users,  load average: 0.17, 0.29, 0.37

auto up  02:38:43  up   0:05,  3 users,  load average: 0.52, 0.53, 0.25

auto up  10:53:19  up   0:00,  2 users,  load average: 1.01, 0.25, 0.08

auto up  11:12:59  up   0:20,  2 users,  load average: 0.61, 0.62, 0.36

auto up  16:24:24  up   1:02,  2 users,  load average: 0.54, 0.27, 0.10

auto up  23:01:45  up   8:51,  2 users,  load average: 0.57, 0.67, 0.74

auto up  15:03:56  up   0:02,  2 users,  load average: 0.32, 0.20, 0.09

auto up  11:49:23  up   0:19,  2 users,  load average: 0.09, 0.27, 0.37
2025-12-24 04:59:48 +01:00

32 lines
876 B
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.kernelModules = [ "ecryptfs" ];
boot.initrd.availableKernelModules = [ "xhci_pci" "nvme" ];
fileSystems = {
"/" =
{ device = "/dev/disk/by-uuid/46a20748-374f-443c-813a-b79408520076";
fsType = "ext4";
};
"/boot" =
{ device = "/dev/disk/by-uuid/4ED9-4D41";
fsType = "vfat";
options = [ "fmask=0077" "dmask=0077" ];
};
};
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}