From 6d07786aa357f7d10a41784379fd46c34d3ab5e3 Mon Sep 17 00:00:00 2001 From: Michael Mandl Date: Tue, 11 Oct 2022 19:02:11 +0200 Subject: [PATCH] feat: enable zfs on p330 --- machines/p330/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/machines/p330/configuration.nix b/machines/p330/configuration.nix index 40394f5..e1930d7 100644 --- a/machines/p330/configuration.nix +++ b/machines/p330/configuration.nix @@ -2,7 +2,10 @@ { networking.hostName = "p330"; + networking.hostId = "p330"; + boot.loader.grub.enableCryptodisk = true; + boot.supportedFilesystems = [ "zfs" ]; services.xserver = { videoDrivers = [ "intel" ];