summaryrefslogtreecommitdiff
path: root/nixos/hosts/crank-vm/default.nix
blob: 1415674fba38bef638f4c3f58839737581730e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ config, inputs, pkgs, ...}: 
{
	imports = [
	   ./hardware-configuration.nix
	   ../../common
	];
	
  	networking.hostName = "crank-vm"; # Define your hostname.
	# Use the systemd-boot EFI boot loader.
	# boot.loader.systemd-boot.enable = true;
	boot.loader.efi.canTouchEfiVariables = true; 
	boot.loader.grub =  { 
	  device = "nodev";
	  useOSProber = true;
	  efiSupport = true; 
	  default = "saved";
	  memtest86.enable = true; 
	};
 	 networking.firewall.enable = false;
}