Change from dnf back to rpm-ostree. changed repos to respective versions #32

Closed
eriq12 wants to merge 9 commits from return-to-rpm-ostree into main
15 changed files with 145 additions and 147 deletions
Showing only changes of commit ce14e6fce0 - Show all commits

View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
# Tell build process to exit if there are any errors.
set -oue pipefail
# import keys
sudo rpmkeys --import https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg
# create file called vscodium.repo and setup file to possess
printf "[gitlab.com_paulcarroty_vscodium_repo]\nname=download.vscodium.com\nbaseurl=https://download.vscodium.com/rpms/\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/-/raw/master/pub.gpg\nmetadata_expire=1h\n" | sudo tee -a /etc/yum.repos.d/vscodium.repo

View File

@@ -1,4 +1,8 @@
modules:
- type: script
scripts:
- setupcodiumrepo.sh
- type: rpm-ostree
install:
# applications
@@ -13,8 +17,9 @@ modules:
- file-roller
- file-roller-nautilus
# text editor
# text editors
- neovim
- codium
# software store
- gnome-software
@@ -38,3 +43,6 @@ modules:
# zoxide for z stuff
- zoxide
- type: script
snippets:
- "sudo rm /etc/yum.repos.d/vscodium.repo"