This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/root/config.yaml

105 lines
2.4 KiB
YAML
Raw Normal View History

2021-06-16 03:00:49 +02:00
# _ _ _
# __| | ___ | |_ __| |_ __ ___ _ __
# / _` |/ _ \| __/ _` | '__/ _ \| '_ \
# | (_| | (_) | || (_| | | | (_) | |_) |
# \__,_|\___/ \__\__,_|_| \___/| .__/
# |_|
###############################################################
config:
###############################################################
backup: false
banner: false
keepdot: false
link_dotfile_default: nolink
link_on_import: nolink
dotpath: .
2021-06-23 06:49:38 +02:00
func_file:
- "{{@@ _dotdrop_dotpath @@}}/../funcs.py"
filter_file:
- "{{@@ _dotdrop_dotpath @@}}/../funcs.py"
2021-06-16 03:00:49 +02:00
2021-06-16 03:01:31 +02:00
###############################################################
actions:
###############################################################
greetd_install: _greetd_install
2021-06-16 08:33:22 +02:00
grub_install: update-grub
2021-06-17 08:42:42 +02:00
locale_install: locale-gen
2021-06-18 08:54:44 +02:00
groups_install: sh ~/.local/share/groups
2021-06-16 08:33:52 +02:00
pacman_install: |
pacman-key --init
pacman-key --populate
sv_update: |
2021-06-23 06:49:38 +02:00
sv restart "{{@@ '_dotfile_key' | var @@}}" ||
rc-service "{{@@ '_dotfile_key' | var @@}}" restart
create_subvolumes: _create-subvolumes
create_swapfile: _create-swapfile
mount_partitions: mount -a
dbus_uuidgen: dbus-uuidgen --ensure
2021-06-16 08:32:46 +02:00
2021-06-16 03:01:31 +02:00
###############################################################
2021-06-16 08:32:46 +02:00
dotfiles:
2021-06-16 03:01:31 +02:00
###############################################################
greetd:
src: greetd
2021-06-18 08:54:44 +02:00
dst: /etc/greetd
2021-06-16 03:01:31 +02:00
actions:
- greetd_install
2021-06-16 08:32:46 +02:00
elogind:
src: elogind.conf
dst: /etc/elogind/logind.conf
actions:
- sv_update
- dbus_uuidgen
2021-06-16 08:32:46 +02:00
2021-06-16 08:33:22 +02:00
grub:
src: grub
dst: /etc/default/grub
actions:
- grub_install
2021-06-16 08:33:52 +02:00
pacman:
src: pacman.conf
dst: /etc/pacman.conf
actions:
- pacman_install
2021-06-17 08:42:42 +02:00
locale:
src: locale.gen
dst: /etc/locale.gen
actions:
- locale_install
2021-06-23 06:49:38 +02:00
fstab:
src: fstab
dst: /etc/fstab
actions:
- create_subvolumes
- create_swapfile
- mount_partitions
zram:
src: zram
dst: /etc/
2021-06-16 03:01:31 +02:00
2021-06-18 08:54:44 +02:00
groups:
src: groups
dst: ~/.local/share/groups
actions:
- groups_install
2021-06-16 03:00:49 +02:00
###############################################################
profiles:
###############################################################
main:
dotfiles:
- ALL