marleyos/modules/base/programs/wget.nix
2025-05-31 13:54:34 -07:00

16 lines
258 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.marleyos.programs.wget;
in {
options.marleyos.programs.wget.enable = lib.mkEnableOption "wget";
config = lib.mkIf cfg.enable {
environment.systemPackages = with pkgs; [
wget
];
};
}