| So I haven't made an iso with flk for while but there seems to be a regression (at least in terms of how I was using it. I have a basic host I use for a super slim iso that pulls in one of my VM users that has some packages + my ssh keys in authorizedKeys. It looks like this:
{ lib, suites, profiles, ... }:
{
imports = lib.flatten [
suites.base
profiles.users.operator
];
services.openssh.enable = true;
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
networking.interfaces.enp1s0.useDHCP = true;
fileSystems."/" = { device = "/dev/disk/by-label/nixos"; };
}
Previously this worked fine, and I could ssh into the VM/machine as my operator user, however in the most recent develop branches of devos/digga, the operator user is no longer included when creating an iso with flk iso, I cannot see anything obvious that removes my user, other than perhaps the disabledModules config in isoConfig in digga.
My question would be, is there an easy way to include certain profiles/suites in the iso?
|