nixos-config/machines/p330/configuration.nix

10 lines
180 B
Nix
Raw Normal View History

2022-07-07 13:33:38 +00:00
{ config, pkgs, ... }:
{
networking.hostName = "p330";
2022-10-11 17:02:11 +00:00
networking.hostId = "05130071";
2022-07-07 13:33:38 +00:00
boot.loader.grub.enableCryptodisk = true;
2022-10-11 17:02:11 +00:00
boot.supportedFilesystems = [ "zfs" ];
2022-07-07 13:33:38 +00:00
}