summaryrefslogtreecommitdiff
path: root/nixos/hosts/crank-vm/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/hosts/crank-vm/default.nix')
-rw-r--r--nixos/hosts/crank-vm/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/nixos/hosts/crank-vm/default.nix b/nixos/hosts/crank-vm/default.nix
deleted file mode 100644
index 1415674..0000000
--- a/nixos/hosts/crank-vm/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ 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;
-}