diff --git a/Golden_Repo/n/Nsight-Compute/Nsight-Compute-2023.1.0-GCCcore-11.3.0.eb b/Golden_Repo/n/Nsight-Compute/Nsight-Compute-2023.1.0-GCCcore-11.3.0.eb
new file mode 100644
index 0000000000000000000000000000000000000000..f7b53fb537e17e6f09698ed73e924033cb939224
--- /dev/null
+++ b/Golden_Repo/n/Nsight-Compute/Nsight-Compute-2023.1.0-GCCcore-11.3.0.eb
@@ -0,0 +1,47 @@
+# jg (CSCS)
+# AH (JSC)
+easyblock = 'Binary'
+
+name = 'Nsight-Compute'
+version = '2023.1.0'
+homepage = 'https://developer.nvidia.com/nsight-compute'
+description = 'NVIDIA Nsight Compute is an interactive kernel profiler for CUDA applications'
+
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+# Download source binary package manually, requires Nvidia Developer Account
+# source_urls = 'https://developer.nvidia.com/nsight-compute'
+sources = [{
+    'filename': 'nsight-compute-linux-%(version)s.16-32451174.run',
+    'extract_cmd': '/bin/sh %s'
+}]
+checksums = ['3daa4906f8d878590a462839b3f9dc642ebe6070e6ac145bd36198b7c6309c99']
+
+# Not really necessary, but useful if we use this as a template for another package
+builddependencies = [
+    ('binutils', '2.38'),
+]
+
+dependencies = [
+    ('X11', '20220504')
+]
+
+extract_sources = True
+unpack_options = '--nochown --noexec --nox11 --target %(builddir)s'
+
+install_cmd = 'cp -r %(builddir)s/pkg/* %(installdir)s/'
+
+# Workaround due to wrong permissions once the files are extracted from the .run file
+postinstallcmds = [
+    'find %(installdir)s -type f -and -executable -and ! -name "lib*" -exec chmod go+x {} \;']
+
+sanity_check_paths = {
+    'files': ['ncu-ui', 'ncu'],
+    'dirs': ['docs', 'extras', 'host', 'sections', 'target']
+}
+
+modluafooter = """
+add_property("arch","gpu")
+"""
+
+moduleclass = 'tools'
diff --git a/Golden_Repo/n/Nsight-Systems/Nsight-Systems-2023.2.1-GCCcore-11.3.0.eb b/Golden_Repo/n/Nsight-Systems/Nsight-Systems-2023.2.1-GCCcore-11.3.0.eb
new file mode 100644
index 0000000000000000000000000000000000000000..f1170c5ff0d73ce2e912f7c1d34e6f8c5acdc49e
--- /dev/null
+++ b/Golden_Repo/n/Nsight-Systems/Nsight-Systems-2023.2.1-GCCcore-11.3.0.eb
@@ -0,0 +1,44 @@
+# jg (CSCS)
+# AH (JSC)
+easyblock = 'Binary'
+
+name = 'Nsight-Systems'
+version = '2023.2.1'
+homepage = 'https://developer.nvidia.com/nsight-systems'
+description = 'NVIDIA Nsight Systems is a system-wide performance analysis tool'
+
+# GCCcore toolchain is not strictly necessary, but used to bring it to same level as Nsight Compute
+toolchain = {'name': 'GCCcore', 'version': '11.3.0'}
+
+# Download source binary package manually, requires Nvidia Developer Account
+# source_urls = 'https://developer.nvidia.com/nsight-systems'
+sources = [{
+    'filename': 'NsightSystems-linux-public-%(version)s.122-3259852.run',
+    'extract_cmd': '/bin/sh %s'
+}]
+checksums = ['894a8a6bb08b1314eec41309a3c56386a4929ba58914278e49fa9a5fd2724f89']
+
+dependencies = [
+    ('X11', '20220504')
+]
+
+
+extract_sources = True
+unpack_options = '--accept --nochown --noexec --nox11 --target %(builddir)s'
+
+install_cmd = 'cp -r %(builddir)s/pkg/* %(installdir)s/'
+
+sanity_check_paths = {
+    'files': ['bin/nsys'],
+    'dirs': ['target-linux-x64', 'host-linux-x64']
+}
+
+modextravars = {
+    'NSIGHT_DOC': '%(installdir)s/documentation/nsys-exporter'
+}
+
+modluafooter = """
+add_property("arch","gpu")
+"""
+
+moduleclass = 'tools'