pantheon/modules/hostSpec.nix

15 lines
382 B
Nix

{ config, ... }:
{
flake.hostSpec.hosts = {
"nixos/test".imports = with config.flake.modules.nixos; [ networking ];
"nixos/test".config = {
boot.loader.systemd-boot.enable = true;
fileSystems."/" = {
device = "/dev/sda1";
fsType = "ext4";
};
nixpkgs.hostPlatform = "x86_64-linux";
system.stateVersion = "25.05";
};
};
}