1
0
mirror of https://github.com/tommytran732/QubesOS-Scripts synced 2024-09-19 15:14:43 -04:00

Add development VM

This commit is contained in:
Tommy 2022-08-05 00:33:54 -04:00
parent 173010b5d4
commit cd226efba6
No known key found for this signature in database
GPG Key ID: 060B29EB996BD9F2

12
fedora/development.sh Normal file
View File

@ -0,0 +1,12 @@
#!/bin/bash
#Needs to be based on the Edge template
curl --proxy http://127.0.0.1:8082 https://mirror.mwt.me/ghd/gpgkey -o shiftkey.asc
sudo rpm --import shiftkey.asc
sudo sh -c 'echo -e "[shiftkey]\nname=GitHub Desktop\nbaseurl=https://mirror.mwt.me/ghd/rpm\nenabled=1\ngpgcheck=0\nrepo_gpgcheck=1\ngpgkey=https://mirror.mwt.me/ghd/gpgkey" > /etc/yum.repos.d/shiftkey-desktop.repo'
sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.microsoft.com/yumrepos/vscode\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/vscode.repo'
sudo dnf config-manager --add-repo https://download.docker.com/linux/fedora/docker-ce.repo
sudo dnf install docker-ce docker-compose-plugin github-desktop code java-latest-openjdk hugo
sudo systemctl enable --now docker
sudo usermod -aG docker $USER
newgrp docker