nixos/profiles/usb-iso/default.nix
2024-07-28 21:08:02 +02:00

21 lines
329 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.my.profiles.usb-iso;
in
{
options.my.profiles.usb-iso = with lib; {
enable = mkEnableOption "usb-iso profile";
};
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
ventoy-bin-full # general
woeusb-ng # windows
];
};
}