# 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 + "/hardware/network/broadcom-43xx.nix") (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "vmd" "xhci_pci" "ahci" "nvme" "usbhid" "uas" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@" ]; }; boot.initrd.luks.devices."cryptextroot".device = "/dev/disk/by-uuid/24d40dee-98f9-4126-8fed-fa6d433cf90d"; fileSystems."/root" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@root" ]; }; fileSystems."/home" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@home" ]; }; fileSystems."/var/log" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@log" ]; }; fileSystems."/btrfs/nvme1" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/9881-231B"; fsType = "vfat"; options = [ "fmask=0022" "dmask=0022" ]; }; fileSystems."/home/asonix/Games" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@games" ]; }; fileSystems."/home/asonix/Documents" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@documents" ]; }; fileSystems."/home/asonix/Downloads" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@downloads" ]; }; fileSystems."/home/asonix/Pictures" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@photos" ]; }; fileSystems."/home/asonix/Videos" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@videos" ]; }; fileSystems."/home/asonix/Music" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@music" ]; }; fileSystems."/home/asonix/InstantUpload" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@instantupload" ]; }; fileSystems."/home/asonix/Notes" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@notes" ]; }; fileSystems."/home/asonix/Development" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@development" ]; }; fileSystems."/nix" = { device = "/dev/disk/by-uuid/fe8523dd-a04e-4f47-8ba8-f3874e51b06c"; fsType = "btrfs"; options = [ "subvol=@nix" ]; }; swapDevices = [ { device = "/dev/disk/by-uuid/bc06c7f7-46e2-4372-aa79-ddb5150f35e8"; } ]; # 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..useDHCP`. networking.useDHCP = lib.mkDefault true; # networking.interfaces.docker0.useDHCP = lib.mkDefault true; # networking.interfaces.enp9s0.useDHCP = lib.mkDefault true; # networking.interfaces.wg0.useDHCP = lib.mkDefault true; # networking.interfaces.wlp8s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }