From 46ebdf600ef906fca0604311de1d104f571a91ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 13 Mar 2024 22:03:43 +0200 Subject: [PATCH] fix fs configs --- hosts/vm/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/vm/configuration.nix b/hosts/vm/configuration.nix index da54857..a503e62 100644 --- a/hosts/vm/configuration.nix +++ b/hosts/vm/configuration.nix @@ -21,7 +21,7 @@ }; boot.loader.systemd-boot.enable = true; - boot.supportedFilesystems = ["zfs" "btrfs" "bcachefs"]; + boot.supportedFilesystems = ["zfs" "btrfs"]; isoImage = { isoName = "toolshed-${self.lastModifiedDate}.iso"; @@ -46,5 +46,6 @@ hostName = "vm"; domain = "jakstys.lt"; firewall.allowedTCPPorts = [22]; + hostId = "abefef01"; }; }