mirror of
https://github.com/sstent/vmimages.git
synced 2025-12-06 06:01:51 +00:00
12 lines
218 B
Nix
12 lines
218 B
Nix
{ lib, config, pkgs, ... }: {
|
|
|
|
#define option to enable this
|
|
options.mymods.wslsshagent.enable = lib.mkEnableOption "Enable WSL Agent forwarder";
|
|
|
|
config = lib.mkIf config.mymods.wslsshagent.enable {
|
|
|
|
###
|
|
|
|
|
|
};
|
|
} |