2022-08-16 14:20:36 +02:00
|
|
|
|
# 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.
|
2023-09-17 20:14:32 +02:00
|
|
|
|
{ config, lib, modulesPath, ... }:
|
2022-08-16 14:20:36 +02:00
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
imports =
|
2023-07-26 16:44:32 +02:00
|
|
|
|
[
|
|
|
|
|
(modulesPath + "/profiles/qemu-guest.nix")
|
2022-08-16 14:20:36 +02:00
|
|
|
|
];
|
|
|
|
|
|
2023-04-23 18:12:54 +02:00
|
|
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
|
2022-08-16 14:20:36 +02:00
|
|
|
|
boot.initrd.kernelModules = [ ];
|
2023-07-26 16:41:55 +02:00
|
|
|
|
boot.kernelModules = [ ];
|
2022-08-16 14:20:36 +02:00
|
|
|
|
boot.extraModulePackages = [ ];
|
|
|
|
|
|
|
|
|
|
fileSystems."/" =
|
2023-07-26 16:44:32 +02:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/4d57c7c1-ed70-4fb1-af4c-4ba027b75248";
|
2023-07-26 16:41:55 +02:00
|
|
|
|
fsType = "ext4";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
};
|
|
|
|
|
|
2023-07-26 16:41:55 +02:00
|
|
|
|
boot.initrd.luks.devices."luksroot".device = "/dev/disk/by-uuid/cfb9b37e-152d-45e9-b75d-88d71471be45";
|
|
|
|
|
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fileSystems."/boot" =
|
2023-07-26 16:44:32 +02:00
|
|
|
|
{
|
|
|
|
|
device = "/dev/disk/by-uuid/06C4-1FDB";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
fsType = "vfat";
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
swapDevices = [ ];
|
|
|
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
2023-04-23 18:12:54 +02:00
|
|
|
|
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
|
2022-08-16 14:20:36 +02:00
|
|
|
|
|
2023-04-23 18:12:54 +02:00
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
2022-08-16 14:20:36 +02:00
|
|
|
|
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
|
|
|
}
|