# Copyright (C) 2023 Thien Tran # # Licensed under the Apache License, Version 2.0 (the "License"); you may not # use this file except in compliance with the License. You may obtain a copy of # the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the # License for the specific language governing permissions and limitations under # the License. variant: fcos version: 1.5.0 passwd: users: - name: tomster ssh_authorized_keys: - ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINkTKkJS7Id1WCyA5Klu/moLG9mP5hTC+v2qYqypMF1u contact@tommytran.io groups: - wheel - sudo systemd: units: - name: postinst.service enabled: true contents: | [Unit] Description=Initial System Setup # We run after `systemd-machine-id-commit.service` to ensure that # `ConditionFirstBoot=true` services won't rerun on the next boot. After=systemd-machine-id-commit.service After=network-online.target # We run before `zincati.service` to avoid conflicting rpm-ostree # transactions. Before=zincati.service ConditionPathExists=!/var/lib/%N.stamp [Service] Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/rpm-ostree install firewalld qemu-guest-agent tuned unbound ExecStart=/usr/bin/rpm-ostree override remove cifs-utils containerd moby-engine runc samba-common-libs samba-client-libs libsmbclient libwbclient samba-common sssd-krb5-common sssd-ipa sssd-nfs-idmap sssd-ldap sssd-client sssd-ad sssd-common sssd-krb5 sssd-common-pac ExecStart=/usr/bin/sed -i 's/nullok//g' /etc/pam.d/system-auth ExecStart=/usr/bin/sed -i '$ a\allow 10.0.2.2/32' /etc/chrony.conf ExecStart=/usr/bin/sed -i 's/# install bluetooth/install bluetooth/g' /etc/modprobe.d/30_security-misc.conf ExecStart=/usr/bin/sed -i 's/# install btusb/install btusb/g' /etc/modprobe.d/30_security-misc.conf ExecStart=/usr/bin/sed -i 's/kernel.yama.ptrace_scope=2/kernel.yama.ptrace_scope=1/g' /etc/sysctl.d/990-security-misc.conf ExecStart=/usr/bin/sed -i 's/net.ipv4.icmp_echo_ignore_all=1/net.ipv4.icmp_echo_ignore_all=0/g' /etc/sysctl.d/990-security-misc.conf ExecStart=/usr/bin/sed -i 's/net.ipv6.icmp.echo_ignore_all=1/net.ipv6.icmp.echo_ignore_all=0/g' /etc/sysctl.d/990-security-misc.conf ExecStart=/usr/bin/systemctl disable systemd-resolved ExecStart=/usr/bin/touch /var/lib/%N.stamp ExecStart=/usr/bin/systemctl --no-block reboot [Install] WantedBy=multi-user.target - name: postinst2.service enabled: true contents: | [Unit] Description=Initial System Setup Part 3 # We run this after the packages have been overlayed After=firewalld.service ConditionPathExists=!/var/lib/%N.stamp ConditionPathExists=/var/lib/postinst.stamp [Service] Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/systemctl enable --now firewalld ExecStart=/usr/bin/firewall-cmd --lockdown-on ExecStart=/usr/bin/firewall-cmd --permanent --add-service=ntp ExecStart=/usr/bin/firewall-cmd --reload [Install] WantedBy=multi-user.target - name: setsebool.service enabled: true contents: | [Service] Type=oneshot ExecStart=/usr/sbin/setsebool container_use_cephfs off ExecStart=/usr/sbin/setsebool virt_use_nfs off ExecStart=/usr/sbin/setsebool virt_use_samba off RemainAfterExit=yes [Install] WantedBy=multi-user.target - name: docker.service enabled: false - name: fstrim.timer enabled: true - name: systemd-oomd.service enabled: true - name: rpm-ostree-countme.timer enabled: false mask: true - name: sshd.service enabled: false - name: sshd.socket enabled: true storage: files: - path: /etc/zincati/config.d/51-rollout-wariness.toml contents: inline: | [identity] rollout_wariness = 0 - path: /etc/zincati/config.d/55-updates-strategy.toml contents: inline: | [updates] strategy = "immediate" - path: /etc/chrony.conf contents: source: https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/chrony.conf overwrite: true - path: /etc/modprobe.d/30_security-misc.conf contents: source: https://raw.githubusercontent.com/Kicksecure/security-misc/master/etc/modprobe.d/30_security-misc.conf - path: /etc/sysctl.d/990-security-misc.conf contents: source: https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/990-security-misc.conf - path: /etc/sysctl.d/30_silent-kernel-printk.conf contents: source: https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/30_silent-kernel-printk.conf - path: /etc/sysctl.d/30_security-misc_kexec-disable.conf contents: source: https://raw.githubusercontent.com/Kicksecure/security-misc/master/usr/lib/sysctl.d/30_security-misc_kexec-disable.conf - path: /etc/systemd/system/NetworkManager.service.d/99-brace.conf contents: source: https://gitlab.com/divested/brace/-/raw/master/brace/usr/lib/systemd/system/NetworkManager.service.d/99-brace.conf - path: /etc/systemd/system/irqbalance.service.d/99-brace.conf contents: source: https://gitlab.com/divested/brace/-/raw/master/brace/usr/lib/systemd/system/irqbalance.service.d/99-brace.conf - path: /etc/ssh/sshd_config.d/10-custom.conf contents: source: https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/ssh/sshd_config.d/10-custom.conf - path: /etc/ssh/ssh_config.d/10-custom.conf contents: source: https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/ssh/ssh_config.d/10-custom.conf - path: /etc/systemd/system/sshd.service.d/local.conf contents: source: https://raw.githubusercontent.com/GrapheneOS/infrastructure/main/systemd/system/sshd.service.d/local.conf - path: /etc/tuned/active_profile contents: source: https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/tuned/active_profile - path: /etc/tuned/profile_mode contents: source: https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/tuned/profile_mode - path: /etc/systemd/zram-generator.conf contents: source: https://raw.githubusercontent.com/TommyTran732/Fedora-CoreOS-Ignition/main/etc/systemd/zram-generator.conf - path: /etc/security/limits.d/30-disable-coredump.conf contents: source: https://raw.githubusercontent.com/TommyTran732/Fedora-CoreOS-Ignition/main/etc/security/limits.d/30-disable-coredump.conf - path: /etc/sysconfig/chronyd overwrite: true contents: source: https://raw.githubusercontent.com/TommyTran732/Linux-Setup-Scripts/main/etc/sysconfig/chronyd - path: /etc/unbound/unbound.conf contents: source: https://raw.githubusercontent.com/TommyTran732/Fedora-CoreOS-Ignition/main/etc/unbound/unbound.conf - path: /etc/systemd/system/unbound.service.d/override.conf contents: source: https://raw.githubusercontent.com/TommyTran732/Fedora-CoreOS-Ignition/main/etc/systemd/system/unbound.service.d/override.conf links: - path: /etc/localtime target: ../usr/share/zoneinfo/America/Phoenix - path: /etc/systemd/system/multi-user.target.wants/unbound.service target: /usr/lib/systemd/system/unbound.service - path: /etc/systemd/system/multi-user.target.wants/tuned.service target: /usr/lib/systemd/system/tuned.service - path: /etc/systemd/system/kdump.service target: /dev/null - path: /etc/systemd/system/debug-shell.service target: /dev/null kernel_arguments: should_exist: - mitigations=auto,nosmt - spectre_v2=on - spec_store_bypass_disable=on - tsx=off - kvm.nx_huge_pages=force - nosmt=force - l1d_flush=on - spec_rstack_overflow=safe-ret - random.trust_bootloader=off - random.trust_cpu=off - intel_iommu=on - amd_iommu=force_isolation - efi=disable_early_pci_dma - iommu=force - iommu.passthrough=0 - iommu.strict=1 - slab_nomerge - init_on_alloc=1 - init_on_free=1 - pti=on - vsyscall=none - ia32_emulation=0 - page_alloc.shuffle=1 - randomize_kstack_offset=on - extra_latent_entropy - debugfs=off