# 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 = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "/dev/disk/by-uuid/07b5dda3-2fcd-494b-893c-72301d637e9a"; fsType = "ext4"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/04FD-A91D"; fsType = "vfat"; options = [ "fmask=0077" "dmask=0077" ]; }; # fileSystems."/snap/acestreamplayer/17" = # { device = "/var/lib/snapd/snaps/acestreamplayer_17.snap"; # fsType = "squashfs"; # options = [ "loop" ]; # }; # # fileSystems."/snap/core22/1722" = # { device = "/var/lib/snapd/snaps/core22_1722.snap"; # fsType = "squashfs"; # options = [ "loop" ]; # }; # # fileSystems."/snap/snapd/23258" = # { device = "/var/lib/snapd/snaps/snapd_23258.snap"; # fsType = "squashfs"; # options = [ "loop" ]; # }; # fileSystems."/mnt/zeruel/nas1" = { device = "zeruel.fuku:/mnt/pool1/nas1"; fsType = "nfs"; options = [ "x-systemd.automount" "noauto" ]; }; fileSystems."/mnt/zeruel/dcsi" = { device = "zeruel.fuku:/mnt/pool1/dcsi"; fsType = "nfs"; options = [ "x-systemd.automount" "noauto" ]; }; fileSystems."/mnt/windoze2" = { device = "/dev/disk/by-uuid/6084BE5384BE2B82"; fsType = "ntfs-3g"; options = [ "rw" "uid=1000"]; }; fileSystems."/mnt/windoze" = { device = "/dev/disk/by-uuid/46B01460B01458AF"; fsType = "ntfs-3g"; options = [ "rw" "uid=1000"]; }; swapDevices = [ { device = "/dev/disk/by-uuid/03ecd98d-013f-4476-b43a-bcae0bc1de67"; } ]; # 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.br-71a907d8e6fd.useDHCP = lib.mkDefault true; # networking.interfaces.docker0.useDHCP = lib.mkDefault true; # networking.interfaces.eno1.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = "x86_64-linux"; hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }