config

NixOS config
Log | Files | Refs | README | LICENSE

commit 46ebdf600ef906fca0604311de1d104f571a91ab (tree)
parent a6785cbd8353458cd99c1b039a97ba06cfaf455f
Author: Motiejus Jakštys <motiejus@jakstys.lt>
Date:   Wed, 13 Mar 2024 22:03:43 +0200

fix fs configs

Diffstat:
Mhosts/vm/configuration.nix | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 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"; }; }