71 lines
2.4 KiB
Nix
71 lines
2.4 KiB
Nix
|
|
# 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" "ahci" "usb_storage" "sd_mod" ];
|
|||
|
|
boot.initrd.kernelModules = [ ];
|
|||
|
|
boot.kernelModules = [ "kvm-intel" ];
|
|||
|
|
boot.extraModulePackages = [ ];
|
|||
|
|
|
|||
|
|
fileSystems."/" = {
|
|||
|
|
device = "/dev/disk/by-uuid/305421e4-ad68-4fb4-ad9e-dc0239d0fc3a";
|
|||
|
|
fsType = "btrfs";
|
|||
|
|
options = [ "subvol=@" ];
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
boot.initrd.luks.devices."cryptroot".device =
|
|||
|
|
"/dev/disk/by-uuid/8fd8ef17-6efb-4c59-a692-4a30e96aa06c";
|
|||
|
|
boot.initrd.luks.devices."cryptswap".device =
|
|||
|
|
"/dev/disk/by-uuid/321a7b30-e4d9-458c-b2c6-3c9d586b7f95";
|
|||
|
|
|
|||
|
|
fileSystems."/home" = {
|
|||
|
|
device = "/dev/disk/by-uuid/305421e4-ad68-4fb4-ad9e-dc0239d0fc3a";
|
|||
|
|
fsType = "btrfs";
|
|||
|
|
options = [ "subvol=@home" ];
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
fileSystems."/efi" = {
|
|||
|
|
device = "/dev/disk/by-uuid/29F3-6F90";
|
|||
|
|
fsType = "vfat";
|
|||
|
|
options = [ "fmask=0137" "dmask=0027" ];
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
fileSystems."/boot" = {
|
|||
|
|
device = "/dev/disk/by-uuid/2A29-82FE";
|
|||
|
|
fsType = "vfat";
|
|||
|
|
options = [ "fmask=0022" "dmask=0022" ];
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
fileSystems."/nix" = {
|
|||
|
|
device = "/dev/disk/by-uuid/305421e4-ad68-4fb4-ad9e-dc0239d0fc3a";
|
|||
|
|
fsType = "btrfs";
|
|||
|
|
options = [ "subvol=@nix" ];
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
fileSystems."/var/log" = {
|
|||
|
|
device = "/dev/disk/by-uuid/305421e4-ad68-4fb4-ad9e-dc0239d0fc3a";
|
|||
|
|
fsType = "btrfs";
|
|||
|
|
options = [ "subvol=@log" ];
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
swapDevices =
|
|||
|
|
[{ device = "/dev/disk/by-uuid/d4ebc4af-c76b-4a16-999f-0e26b70b90aa"; }];
|
|||
|
|
|
|||
|
|
# 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;
|
|||
|
|
# networking.interfaces.enp0s31f6.useDHCP = lib.mkDefault true;
|
|||
|
|
# networking.interfaces.wlp3s0.useDHCP = lib.mkDefault true;
|
|||
|
|
|
|||
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|||
|
|
hardware.cpu.intel.updateMicrocode =
|
|||
|
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|||
|
|
}
|