use --target-host for remote deploys

This commit is contained in:
RingOfStorms (Joshua Bell) 2025-12-18 11:26:10 -06:00
parent fca1bd9d8f
commit 49f82a3434
12 changed files with 216 additions and 495 deletions

View file

@ -1,4 +1,9 @@
{ modulesPath, ... }:
{
lib,
pkgs,
modulesPath,
...
}:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
boot.loader.grub = {
@ -7,9 +12,22 @@
efiInstallAsRemovable = true;
device = "nodev";
};
fileSystems."/boot" = { device = "/dev/disk/by-uuid/92B6-AAE1"; fsType = "vfat"; };
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "xen_blkfront" ];
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/92B6-AAE1";
fsType = "vfat";
};
boot.initrd.availableKernelModules = [
"ata_piix"
"uhci_hcd"
"xen_blkfront"
];
boot.initrd.kernelModules = [ "nvme" ];
fileSystems."/" = { device = "/dev/sda3"; fsType = "xfs"; };
fileSystems."/" = {
device = "/dev/sda3";
fsType = "xfs";
};
swapDevices = [ { device = "/dev/sda2"; } ];
nixpkgs.hostPlatform = lib.mkDefault "aarch64-linux";
# My oracle machine is too tiny and boot partition too small to accept a new kernel, locking in at this version...
boot.kernelPackages = pkgs.linuxPackages_6_12;
}