nixos/profiles/usb-iso/default.nix
2023-04-06 00:05:04 +02:00

16 lines
321 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
];
};
}