Move mkinitcpio/modprobe/sysctl configuration to base setup task
This commit is contained in:
parent
fec111584c
commit
ebb8f8c2c2
12 changed files with 185 additions and 250 deletions
|
|
@ -1,5 +1,29 @@
|
|||
platform_packages: []
|
||||
|
||||
modprobe_templates:
|
||||
- {
|
||||
src: 'templates/desktop/modprobe/99-amdgpu.conf.j2',
|
||||
dest: '/etc/modprobe.d/99-amdgpu.conf'
|
||||
}
|
||||
|
||||
mkinitcpio_templates:
|
||||
- {
|
||||
src: 'templates/desktop/mkinitcpio/1-modules.conf.j2',
|
||||
dest: '/etc/mkinitcpio.conf.d/1-amdgpu.conf'
|
||||
}
|
||||
- {
|
||||
src: 'templates/desktop/mkinitcpio/linux.preset.j2',
|
||||
dest: '/etc/mkinitcpio.d/linux.preset'
|
||||
}
|
||||
- {
|
||||
src: 'templates/desktop/mkinitcpio/linux-lts.preset.j2',
|
||||
dest: '/etc/mkinitcpio.d/linux-lts.preset'
|
||||
}
|
||||
|
||||
boot_configuration:
|
||||
disk: /dev/sdc
|
||||
partition: 1
|
||||
|
||||
vpn_default:
|
||||
ip: '10.0.0.3'
|
||||
subnet: '24'
|
||||
|
|
|
|||
|
|
@ -4,10 +4,28 @@ platform_packages:
|
|||
- nvidia-prime
|
||||
- nvidia-utils
|
||||
- lib32-nvidia-utils
|
||||
- systemd-ukify
|
||||
- efibootmgr
|
||||
|
||||
register_uefi_entry: false
|
||||
boot_configuration:
|
||||
disk: /dev/nvme0n1
|
||||
partition: 1
|
||||
|
||||
mkinitcpio_templates:
|
||||
- {
|
||||
src: 'templates/laptop/mkinitcpio/1-modules.conf.j2',
|
||||
dest: '/etc/mkinitcpio.conf.d/1-modules.conf'
|
||||
}
|
||||
- {
|
||||
src: 'templates/laptop/mkinitcpio/2-hooks.conf.j2',
|
||||
dest: '/etc/mkinitcpio.conf.d/2-hooks.conf'
|
||||
}
|
||||
- {
|
||||
src: 'templates/laptop/mkinitcpio/linux.preset.j2',
|
||||
dest: '/etc/mkinitcpio.d/linux.preset'
|
||||
}
|
||||
- {
|
||||
src: 'templates/laptop/mkinitcpio/linux-lts.preset.j2',
|
||||
dest: '/etc/mkinitcpio.d/linux-lts.preset'
|
||||
}
|
||||
|
||||
vpn_default:
|
||||
ip: '10.0.0.2'
|
||||
|
|
|
|||
|
|
@ -1,6 +1,8 @@
|
|||
xdg_config_dir: '{{ ansible_env.HOME }}/.config'
|
||||
xdg_script_dir: '{{ ansible_env.HOME }}/.local/bin'
|
||||
|
||||
register_uefi_entries: false
|
||||
|
||||
packages:
|
||||
- firefox
|
||||
- mpv
|
||||
|
|
@ -30,5 +32,11 @@ packages:
|
|||
- pipewire-alsa
|
||||
- wireguard-tools
|
||||
- otf-monaspace-nerd
|
||||
- systemd-ukify
|
||||
- efibootmgr
|
||||
|
||||
platform_packages: []
|
||||
modprobe_templates: []
|
||||
mkinitcpio_templates: []
|
||||
|
||||
boot_configuration:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue