aboutsummaryrefslogtreecommitdiff
path: root/nix/machines/vm-aarch64/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2025-04-20 11:09:43 -0700
committerFranck Cuny <franck@fcuny.net>2025-04-20 11:09:43 -0700
commit559e2ada65686b4f5c878e3454bf4e7b9f57619b (patch)
tree9f156cabf49a5d24494298b239720283bac19467 /nix/machines/vm-aarch64/default.nix
parentMerge pull request #17 from fcuny/update_flake_lock_action (diff)
downloadinfra-559e2ada65686b4f5c878e3454bf4e7b9f57619b.tar.gz
remove configuration for the VMs
Diffstat (limited to 'nix/machines/vm-aarch64/default.nix')
-rw-r--r--nix/machines/vm-aarch64/default.nix16
1 files changed, 0 insertions, 16 deletions
diff --git a/nix/machines/vm-aarch64/default.nix b/nix/machines/vm-aarch64/default.nix
deleted file mode 100644
index 86382af..0000000
--- a/nix/machines/vm-aarch64/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ ... }:
-{
- imports = [
- ./hardware.nix
- ../vm-shared.nix
- ];
-
- # Use the systemd-boot EFI boot loader.
- boot.loader.systemd-boot.enable = true;
- boot.loader.efi.canTouchEfiVariables = true;
-
- networking.hostName = "vm-aarch64";
-
- # enable the guest agent
- services.qemuGuest.enable = true;
-}