Advertisement
Guest User

nixos crashing virtualbox

a guest
Nov 26th, 2020
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. { config, pkgs, lib, ... }:
  2.  
  3. {
  4. imports = [
  5. <nixpkgs/nixos/modules/installer/netboot/netboot-minimal.nix>
  6. ];
  7.  
  8. boot.kernelModules = [ "kvm-intel" ];
  9.  
  10. # Set your time zone.
  11. time.timeZone = "Europe/Amsterdam";
  12.  
  13. environment.systemPackages = with pkgs; [
  14. vim curl htop
  15. ];
  16.  
  17. networking.hostName = "minimal-crash-reproducer";
  18. networking.firewall.enable = true;
  19. networking.firewall.allowPing = true;
  20.  
  21. users.users.simpleuser = {
  22. isNormalUser = true;
  23. uid = 1000;
  24. extraGroups = [ "wheel" ];
  25. password = "RandomPassword";
  26. };
  27. }
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement