Types/OpenPackage/get_Nix.ps1

<#
.SYNOPSIS
    Gets a package's `*.nix` files
.DESCRIPTION
    Gets the content of any `*.nix` files in the package.
#>

[OutputType([string])]
param()

$this.GetContent(@($this.FileList) -match '\.nix$')