add script to install programs (fedora only)
This commit is contained in:
parent
00f40a6d8a
commit
b0efc15fb5
4 changed files with 14 additions and 4 deletions
4
fedora_packages
Normal file
4
fedora_packages
Normal file
|
@ -0,0 +1,4 @@
|
|||
1password
|
||||
fira-code-fonts
|
||||
fish
|
||||
fzf
|
10
run_once_1_install_programs.sh.tmpl
Normal file
10
run_once_1_install_programs.sh.tmpl
Normal file
|
@ -0,0 +1,10 @@
|
|||
#!/bin/sh
|
||||
{{- if eq .chezmoi.osRelease.id "fedora" }}
|
||||
|
||||
# add 1password repository
|
||||
sudo rpm --import https://downloads.1password.com/linux/keys/1password.asc
|
||||
sudo sh -c 'echo -e "[1password]\nname=1Password Stable Channel\nbaseurl=https://downloads.1password.com/linux/rpm/stable/\$basearch\nenabled=1\ngpgcheck=1\nrepo_gpgcheck=1\ngpgkey=\"https://downloads.1password.com/linux/keys/1password.asc\"" > /etc/yum.repos.d/1password.repo'
|
||||
|
||||
# install packages
|
||||
sudo dnf install $(cat fedora_packages)
|
||||
{{ end }}
|
|
@ -1,4 +0,0 @@
|
|||
#!/bin/sh
|
||||
{{- if eq .chezmoi.osRelease.id "fedora" }}
|
||||
# TODO: Install programs
|
||||
{{ end }}
|
Loading…
Reference in a new issue