From c1452af9527bef770b5acb100359bfc1668ec552 Mon Sep 17 00:00:00 2001 From: Maximilian Friedersdorff Date: Tue, 6 Aug 2019 08:28:12 +0100 Subject: [PATCH] Add arch specific installation files They are direct equivalents of their gentoo counterparts --- states/conky/arch.sls | 3 +++ states/firefox/arch.sls | 3 +++ states/git/arch.sls | 3 +++ states/mail/arch.sls | 3 +++ states/ntp/arch.sls | 10 ++++++++++ states/pass/arch.sls | 5 +++++ states/qutebrowser/arch.sls | 6 ++++++ states/setup-arch.sls | 0 states/sway/arch.sls | 6 ++++++ states/termite/arch.sls | 3 +++ states/tmux/arch.sls | 3 +++ states/vim/arch.sls | 5 +++++ states/zsh/arch.sls | 5 +++++ 13 files changed, 55 insertions(+) create mode 100644 states/conky/arch.sls create mode 100644 states/firefox/arch.sls create mode 100644 states/git/arch.sls create mode 100644 states/mail/arch.sls create mode 100644 states/ntp/arch.sls create mode 100644 states/pass/arch.sls create mode 100644 states/qutebrowser/arch.sls create mode 100644 states/setup-arch.sls create mode 100644 states/sway/arch.sls create mode 100644 states/termite/arch.sls create mode 100644 states/tmux/arch.sls create mode 100644 states/vim/arch.sls create mode 100644 states/zsh/arch.sls 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 -- 2.44.0