# 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" "nvme" "rtsx_pci_sdmmc" ];
  boot.initrd.kernelModules = [ ];
  boot.kernelModules = [ "kvm-intel" ];
  boot.extraModulePackages = [ ];

  fileSystems."/" =
    { device = "syscea/stateful/root";
      fsType = "zfs";
    };

  fileSystems."/nix" =
    { device = "syscea/ephemeral/nix";
      fsType = "zfs";
    };

  fileSystems."/sdcard" =
    { device = "systemd-1";
      fsType = "autofs";
    };

  fileSystems."/usb" =
    { device = "systemd-1";
      fsType = "autofs";
    };

  fileSystems."/home/coolneng" =
    { device = "syscea/stateful/home";
      fsType = "zfs";
    };

  fileSystems."/tmp" =
    { device = "syscea/ephemeral/tmp";
      fsType = "zfs";
    };

  fileSystems."/home/coolneng/Downloads" =
    { device = "syscea/stateful/home/downloads";
      fsType = "zfs";
    };

  fileSystems."/boot" =
    { device = "/dev/disk/by-uuid/4851-6B40";
      fsType = "vfat";
    };

  swapDevices =
    [ { device = "/dev/disk/by-uuid/c8e252ac-941f-4290-8212-42c1bc2bff69"; }
    ];

  powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
}