efa91a0
- name: Install Workstation packages
efa91a0
  dnf:
efa91a0
    name: '@Fedora Workstation'
efa91a0
    state: present
efa91a0
- name: Install libselinux-python
efa91a0
  dnf:
efa91a0
    name: libselinux-python
efa91a0
    state: present
efa91a0
- name: Set up user test
efa91a0
  user:
efa91a0
    name: test
efa91a0
    groups:
efa91a0
      - wheel
efa91a0
      - adm
efa91a0
    password: $6$lJYbJXPZrkeslR0K$H46Th6V.IdaHEPWt7YUSIwz9r16LWWDFSrIvbmUOyZaGMWfXzS1wb5iWPuMmX9VeSz/wiKj5003sl6gDQ/cUD.
efa91a0
- name: Set passwordless sudo
efa91a0
  lineinfile:
efa91a0
    path: /etc/sudoers
efa91a0
    state: present
efa91a0
    regexp: '^%wheel\s'
efa91a0
    line: '%wheel ALL=(ALL) NOPASSWD: ALL'
efa91a0
- name: Set gdm to use xorg session
efa91a0
  ini_file:
efa91a0
    path: /etc/gdm/custom.conf
efa91a0
    section: daemon
efa91a0
    option: WaylandEnable
efa91a0
    value: false
efa91a0
  when: wayland is undefined
efa91a0
- name: Turn off lock screen when we are idle
efa91a0
  command: gsettings set org.gnome.desktop.session idle-delay 0