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.

22 lines
573 B

  1. # This file is controlled by /etc/dotfiles/README.org
  2. { config, lib, pkgs, modulesPath, ... }:
  3. {
  4. imports =
  5. [ (modulesPath + "/profiles/qemu-guest.nix")
  6. ];
  7. boot.initrd.availableKernelModules = [ "ata_piix" "floppy" "sd_mod" "sr_mod" ];
  8. boot.initrd.kernelModules = [ ];
  9. boot.kernelModules = [ ];
  10. boot.extraModulePackages = [ ];
  11. fileSystems."/" =
  12. { device = "/dev/disk/by-uuid/fddc37ff-a442-41fa-afc4-abf878be7c5a";
  13. fsType = "ext4";
  14. };
  15. swapDevices =
  16. [ { device = "/dev/disk/by-uuid/5fc0e3df-e796-4fe2-8482-c6acaed9d36f"; }
  17. ];
  18. }