default.rb 714 B

12345678910111213141516171819202122232425262728293031323334
  1. #
  2. # Cookbook:: workstation
  3. # Recipe:: default
  4. #
  5. # Copyright:: 2022, The Authors, All Rights Reserved.
  6. # Enable json file reports
  7. chef_handler 'Chef::Handler::JsonFile' do
  8. source 'chef/handler/json_file'
  9. arguments path: '/var/chef/reports'
  10. action :enable
  11. end
  12. # Configure repo
  13. include_recipe 'apt_repositories::_official'
  14. # User creation and directories
  15. include_recipe 'workstation::_user'
  16. # Setup podman
  17. include_recipe 'workstation::_podman'
  18. # Setup 'git'
  19. include_recipe 'workstation::_git'
  20. # Install 'systemd-genie'
  21. include_recipe 'workstation::_genie'
  22. # Add defaut packages
  23. include_recipe 'workstation::_packages'
  24. # END: Setup etckeeper
  25. include_recipe 'etckeeper'
  26. include_recipe 'etckeeper::commit'