nixos-systems/modules/system/template.nix

12 lines
246 B
Nix
Raw Normal View History

{ pkgs, lib, config, ... }:
with lib;
{
options.myModules.template.enable = mkEnableOption "custom template configuration";
config = mkIf config.myModules.template.enable {
#environment.systemPackages = with pkgs; [
#template
#];
};
}