I showed you my source code, pls respond
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
913 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, lib, pkgs, modulesPath, ... }:
  3. {
  4. imports =
  5. [ (modulesPath + "/installer/scan/not-detected.nix")
  6. ];
  7. boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];
  8. boot.initrd.kernelModules = [ ];
  9. boot.kernelModules = [ "kvm-intel" ];
  10. boot.extraModulePackages = [ ];
  11. sound.enable = true;
  12. hardware.pulseaudio.enable = true;
  13. hardware.pulseaudio.support32Bit = true;
  14. services.xserver.dpi = 96;
  15. fileSystems."/" =
  16. { device = "/dev/disk/by-uuid/2f548eb9-47ce-4280-950f-9c6d1d162852";
  17. fsType = "ext4";
  18. };
  19. fileSystems."/boot" =
  20. { device = "/dev/disk/by-uuid/5BC3-73F3";
  21. fsType = "vfat";
  22. };
  23. swapDevices =
  24. [ { device = "/dev/disk/by-uuid/bef7bf62-d26f-45b1-a1f8-1227c2f8b26a"; }
  25. ];
  26. powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
  27. }