chore!: prepare for multi-host config

This commit is contained in:
Henri Saudubray 2026-01-20 21:05:14 +01:00
parent 98ea8fbe7d
commit f6f21ba61d
3 changed files with 25 additions and 2 deletions

View file

@ -0,0 +1,53 @@
# 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,
modulesPath,
...
}:
{
imports = [
(modulesPath + "/installer/scan/not-detected.nix")
];
boot.initrd.availableKernelModules = [
"xhci_pci"
"thunderbolt"
"vmd"
"nvme"
"usb_storage"
"usbhid"
"sd_mod"
"rtsx_pci_sdmmc"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-intel" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/mapper/luks-de976821-5bfe-4c34-92ff-5d4d607e42c4";
fsType = "ext4";
};
boot.initrd.luks.devices."luks-de976821-5bfe-4c34-92ff-5d4d607e42c4".device =
"/dev/disk/by-uuid/de976821-5bfe-4c34-92ff-5d4d607e42c4";
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/6137-E7B4";
fsType = "vfat";
options = [
"fmask=0077"
"dmask=0077"
];
};
swapDevices = [
{ device = "/dev/mapper/luks-374c6259-18c4-462b-9f30-9c9648de00ae"; }
];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}