os/hosts/iso/default.nix
teutat3s d4eaa00b81
refactor: use native NixOS to build host configs
instead of nixos-flake, now nixos-unified
2024-10-07 17:00:27 +02:00

9 lines
293 B
Nix

{ pkgs, lib, ... }:
{
pub-solar.core.disk-encryption-active = false;
isoImage.squashfsCompression = "gzip -Xcompression-level 1";
systemd.services.sshd.wantedBy = lib.mkForce [ "multi-user.target" ];
networking.networkmanager.enable = false;
nixpkgs.hostPlatform = "x86_64-linux";
}