NixOS-Config/hosts/g2/configuration.nix
2024-05-27 23:53:06 +08:00

15 lines
282 B
Nix

{ config, lib, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
../modules/nasp.nix
];
nasp.serial = 2;
boot.supportedFilesystems = [ "zfs" ];
boot.zfs.forceImportRoot = false;
networking.hostId = "b500d22c";
system.stateVersion = "23.11";
}