add flavor specific packages for fedora

This commit is contained in:
Anthony Rodriguez 2024-02-07 15:34:30 +01:00
parent 6cde121bf5
commit b40847f379
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -1,4 +1,5 @@
#!/bin/sh #!/bin/sh
{{ if eq .flavor "desktop" }}
{{- if eq .chezmoi.osRelease.id "fedora" }} {{- if eq .chezmoi.osRelease.id "fedora" }}
# add 1password repository # add 1password repository
@ -13,3 +14,4 @@ sudo sh -c 'echo -e "[code]\nname=Visual Studio Code\nbaseurl=https://packages.m
sudo dnf check-update sudo dnf check-update
sudo dnf install $(cat fedora_packages) -y sudo dnf install $(cat fedora_packages) -y
{{ end }} {{ end }}
{{ end }}