From: Maximilian Friedersdorff Date: Tue, 6 Aug 2019 07:28:12 +0000 (+0100) Subject: Add arch specific installation files X-Git-Url: https://git.friedersdorff.com/?a=commitdiff_plain;h=c1452af9527bef770b5acb100359bfc1668ec552;p=max%2Fsaltfiles.git Add arch specific installation files They are direct equivalents of their gentoo counterparts --- diff --git a/states/conky/arch.sls b/states/conky/arch.sls new file mode 100644 index 0000000..7c2f408 --- /dev/null +++ b/states/conky/arch.sls @@ -0,0 +1,3 @@ +install conky: + pkg.installed: + - name: conky diff --git a/states/firefox/arch.sls b/states/firefox/arch.sls new file mode 100644 index 0000000..8074266 --- /dev/null +++ b/states/firefox/arch.sls @@ -0,0 +1,3 @@ +install firefox: + pkg.installed: + - name: firefox diff --git a/states/git/arch.sls b/states/git/arch.sls new file mode 100644 index 0000000..1e11106 --- /dev/null +++ b/states/git/arch.sls @@ -0,0 +1,3 @@ +install git: + pkg.installed: + - name: git diff --git a/states/mail/arch.sls b/states/mail/arch.sls new file mode 100644 index 0000000..a6bfc5c --- /dev/null +++ b/states/mail/arch.sls @@ -0,0 +1,3 @@ +install mutt: + pkg.installed: + - name: mutt diff --git a/states/ntp/arch.sls b/states/ntp/arch.sls new file mode 100644 index 0000000..a3c8902 --- /dev/null +++ b/states/ntp/arch.sls @@ -0,0 +1,10 @@ +install ntp: + pkg.installed: + - name: ntp + +run ntp service: + service.running: + - name: ntpd + - enable: True + - require: + - pkg: install ntp diff --git a/states/pass/arch.sls b/states/pass/arch.sls new file mode 100644 index 0000000..26dce04 --- /dev/null +++ b/states/pass/arch.sls @@ -0,0 +1,5 @@ +install pass: + pkg.installed: + - pkgs: + - pass + - pass-otp diff --git a/states/qutebrowser/arch.sls b/states/qutebrowser/arch.sls new file mode 100644 index 0000000..f7b280d --- /dev/null +++ b/states/qutebrowser/arch.sls @@ -0,0 +1,6 @@ +install qutebrowser: + pkg.installed: + - pkgs: + - qutebrowser + - qt5-wayland + - python-tldextract diff --git a/states/setup-arch.sls b/states/setup-arch.sls new file mode 100644 index 0000000..e69de29 diff --git a/states/sway/arch.sls b/states/sway/arch.sls new file mode 100644 index 0000000..e8d2445 --- /dev/null +++ b/states/sway/arch.sls @@ -0,0 +1,6 @@ +install sway: + pkg.installed: + - pkgs: + - sway + - swaylock + - swayidle diff --git a/states/termite/arch.sls b/states/termite/arch.sls new file mode 100644 index 0000000..8a3cfd1 --- /dev/null +++ b/states/termite/arch.sls @@ -0,0 +1,3 @@ +install termite: + pkg.installed: + - name: termite diff --git a/states/tmux/arch.sls b/states/tmux/arch.sls new file mode 100644 index 0000000..610a9e3 --- /dev/null +++ b/states/tmux/arch.sls @@ -0,0 +1,3 @@ +install tmux: + pkg.installed: + - name: tmux diff --git a/states/vim/arch.sls b/states/vim/arch.sls new file mode 100644 index 0000000..c780618 --- /dev/null +++ b/states/vim/arch.sls @@ -0,0 +1,5 @@ +install vim: + pkg.installed: + - pkgs: + - vim + - vim-molokai diff --git a/states/zsh/arch.sls b/states/zsh/arch.sls new file mode 100644 index 0000000..5aa4147 --- /dev/null +++ b/states/zsh/arch.sls @@ -0,0 +1,5 @@ +install zsh: + pkg.installed: + - pkgs: + - zsh + - zsh-completions