Fixed Branding
This commit is contained in:
parent
55933f2aa7
commit
0ba139a7e9
4 changed files with 123 additions and 4 deletions
|
@ -5,11 +5,11 @@ welcomeStyleCalamares: false
|
|||
|
||||
welcomeExpandingLogo: true
|
||||
|
||||
windowExpanding: normal
|
||||
windowExpanding: fullscreen
|
||||
|
||||
windowPlacement: center
|
||||
|
||||
sidebar: widget
|
||||
sidebar: none
|
||||
|
||||
navigation: widget
|
||||
|
||||
|
|
17
etc/calamares/modules/machineid.conf
Normal file
17
etc/calamares/modules/machineid.conf
Normal file
|
@ -0,0 +1,17 @@
|
|||
# SPDX-FileCopyrightText: no
|
||||
# SPDX-License-Identifier: CC0-1.0
|
||||
#
|
||||
# Machine-ID and other random data on the target system.
|
||||
---
|
||||
|
||||
systemd: true
|
||||
|
||||
dbus: true
|
||||
|
||||
dbus-symlink: true
|
||||
|
||||
entropy-copy: false
|
||||
|
||||
entropy-files:
|
||||
- /var/lib/urandom/random-seed
|
||||
- /var/lib/systemd/random-seed
|
|
@ -4,7 +4,50 @@
|
|||
# Mount filesystems in the target (generally, before treating the
|
||||
# target as a usable chroot / "live" system).
|
||||
---
|
||||
|
||||
setSELinux: false
|
||||
|
||||
extraMounts:
|
||||
- device: proc
|
||||
fs: proc
|
||||
mountPoint: /proc
|
||||
- device: sys
|
||||
fs: sysfs
|
||||
mountPoint: /sys
|
||||
- device: /dev
|
||||
mountPoint: /dev
|
||||
options: [ bind ]
|
||||
- device: tmpfs
|
||||
fs: tmpfs
|
||||
mountPoint: /run
|
||||
- device: /run/udev
|
||||
mountPoint: /run/udev
|
||||
options: [ bind ]
|
||||
- device: efivarfs
|
||||
fs: efivarfs
|
||||
mountPoint: /sys/firmware/efi/efivars
|
||||
efi: true
|
||||
|
||||
btrfsSwapSubvol: /@swap
|
||||
|
||||
btrfsSubvolumes:
|
||||
- mountPoint: /
|
||||
subvolume: /@
|
||||
- mountPoint: /home
|
||||
subvolume: /@home
|
||||
- mountPoint: /var/cache
|
||||
subvolume: /@cache
|
||||
- mountPoint: /var/log
|
||||
subvolume: /@log
|
||||
|
||||
mountOptions:
|
||||
- filesystem: default
|
||||
options: [ noatime ]
|
||||
- filesystem: efi
|
||||
options: [ fmask=0137, dmask=0027 ]
|
||||
- filesystem: btrfs
|
||||
options: [ noatime, compress=zstd ]
|
||||
- filesystem: btrfs_swap
|
||||
options: [ noatime ]
|
||||
setSELinux: false
|
||||
|
||||
extraMounts:
|
||||
|
|
59
etc/calamares/modules/users.conf
Normal file
59
etc/calamares/modules/users.conf
Normal file
|
@ -0,0 +1,59 @@
|
|||
|
||||
defaultGroups:
|
||||
- name: users
|
||||
must_exist: true
|
||||
system: true
|
||||
- lp
|
||||
- video
|
||||
- network
|
||||
- storage
|
||||
- power
|
||||
- rfkill
|
||||
- name: wheel
|
||||
must_exist: false
|
||||
system: true
|
||||
- audio
|
||||
|
||||
|
||||
sudoersGroup: wheel
|
||||
|
||||
autologinGroup: autologin
|
||||
|
||||
|
||||
sudoersConfigureWithGroup: true
|
||||
|
||||
setRootPassword: false
|
||||
|
||||
doReusePassword: false
|
||||
|
||||
|
||||
doAutologin: false
|
||||
|
||||
# These are very weak -- actually, none at all -- requirements
|
||||
passwordRequirements:
|
||||
minLength: 1 # Password at least this many characters
|
||||
# maxLength: 10 # Password at most this many characters
|
||||
# libpwquality:
|
||||
# - minlen=0
|
||||
# - minclass=0
|
||||
|
||||
allowWeakPasswords: true
|
||||
|
||||
allowWeakPasswordsDefault: false
|
||||
|
||||
user:
|
||||
shell: /bin/bash
|
||||
forbidden_names: [ root ]
|
||||
|
||||
hostname:
|
||||
location: EtcFile
|
||||
writeHostsFile: true
|
||||
forbidden_names: [ localhost ]
|
||||
|
||||
presets:
|
||||
fullName:
|
||||
# value: "ParchLinux User"
|
||||
editable: true
|
||||
loginName:
|
||||
# value: "ParchLinux"
|
||||
editable: true
|
Loading…
Add table
Reference in a new issue