update
This commit is contained in:
2
.zshrc
2
.zshrc
@@ -23,6 +23,8 @@ alias ll='eza -l'
|
||||
alias tree='eza -T'
|
||||
alias cat='bat'
|
||||
alias network='nmtui'
|
||||
alias docker='podman'
|
||||
alias sudo='sudo '
|
||||
|
||||
#
|
||||
## Initialization code that may require console input (password prompts, [y/n]
|
||||
|
||||
@@ -9,3 +9,6 @@
|
||||
|
||||
- name: install pacman
|
||||
include_tasks: "./scripts/install_pacman.yml"
|
||||
|
||||
- name: configure systemd
|
||||
include_tasks: "./scripts/configure_systemd.yml"
|
||||
|
||||
@@ -37,6 +37,7 @@ required_packages_pacman:
|
||||
- nmap
|
||||
- kubectl
|
||||
- terraform
|
||||
- podman
|
||||
|
||||
flatpak_remote:
|
||||
- {name: 'flathub', url: "https://dl.flathub.org/repo/flathub.flatpakrepo"}
|
||||
|
||||
7
ansible/scripts/configure_systemd.yml
Normal file
7
ansible/scripts/configure_systemd.yml
Normal file
@@ -0,0 +1,7 @@
|
||||
- name: Enable Systemd Services
|
||||
ansible.builtin.systemd_service:
|
||||
name: "{{ item }}"
|
||||
state: started
|
||||
enabled: true
|
||||
with_items: "{{ systemd_service }}"
|
||||
when: systemd_service is defined
|
||||
Reference in New Issue
Block a user