# 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" "thunderbolt" "nvme" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.kernelParams = [ "modprobe.blacklist=dvb_usb_rtl28xxu" ]; boot.extraModulePackages = [ ]; fileSystems."/x" = { device = "tmpfs"; fsType = "tmpfs"; options = [ "size=8G" "mode=1777" ]; }; fileSystems."/" = { device = "/dev/disk/by-uuid/f4bf5b26-3959-4087-ad60-b5eaaf9c7cd5"; fsType = "ext4"; }; boot.initrd.luks.devices."luks-28e5a617-073a-4385-9fc2-f0620a8ead08".device = "/dev/disk/by-uuid/28e5a617-073a-4385-9fc2-f0620a8ead08"; fileSystems."/boot" = { device = "/dev/disk/by-uuid/40B6-4877"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; fileSystems."/mnt/share" = { device = "/dev/disk/by-uuid/0D608CA53E06CE7A"; fsType = "ntfs-3g"; options = [ "rw" "uid=1000" "gid=100" "umask=022" ]; }; 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..useDHCP`. networking.useDHCP = lib.mkDefault true; # networking.interfaces.wlo1.useDHCP = lib.mkDefault true; services.udev.packages = [ pkgs.rtl-sdr ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }