Bunch of fixes
This commit is contained in:
parent
8622a82185
commit
ab3b379487
20 changed files with 488 additions and 99 deletions
|
@ -1,11 +1,2 @@
|
||||||
---
|
crypttabOptions: luks,keyscript=/bin/cat
|
||||||
mountOptions:
|
efiMountOptions: umask=0077
|
||||||
default: defaults,noatime
|
|
||||||
btrfs: defaults,noatime
|
|
||||||
ssdExtraMountOptions:
|
|
||||||
ext4: discard
|
|
||||||
jfs: discard
|
|
||||||
xfs: discard
|
|
||||||
swap: discard
|
|
||||||
btrfs: discard,compress=lzo
|
|
||||||
crypttabOptions: luks,discard,keyscript=/bin/cat
|
|
||||||
|
|
|
@ -5,7 +5,7 @@ systemd: true
|
||||||
dbus: true
|
dbus: true
|
||||||
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
# Whether /var/lib/dbus/machine-id should be a symlink to /etc/machine-id
|
||||||
# (ignored if dbus is false, or if there is no /etc/machine-id to point to).
|
# (ignored if dbus is false, or if there is no /etc/machine-id to point to).
|
||||||
symlink: true
|
dbus-symlink: true
|
||||||
# Whether to copy entropy from the host
|
# Whether to copy entropy from the host
|
||||||
entropy-copy: true
|
entropy-copy: true
|
||||||
# Which files to write (paths in the target)
|
# Which files to write (paths in the target)
|
||||||
|
|
|
@ -38,7 +38,21 @@ extraMounts:
|
||||||
fs: efivarfs
|
fs: efivarfs
|
||||||
mountPoint: /sys/firmware/efi/efivars
|
mountPoint: /sys/firmware/efi/efivars
|
||||||
efi: true
|
efi: true
|
||||||
- device: /dev/pts
|
- device: /run/systemd/resolve
|
||||||
mountPoint: /dev/pts
|
mountPoint: /run/systemd/resolve
|
||||||
options: [ bind ]
|
options: [ bind ]
|
||||||
# /dev/pts is required by apt for storing the logs
|
|
||||||
|
mountOptions:
|
||||||
|
- filesystem: default
|
||||||
|
options: [ defaults ]
|
||||||
|
- filesystem: btrfs
|
||||||
|
options: [ defaults, noatime, autodefrag ]
|
||||||
|
ssdOptions: [ discard, compress=lzo ]
|
||||||
|
- filesystem: ext4
|
||||||
|
ssdOptions: [ discard ]
|
||||||
|
- filesystem: jfs
|
||||||
|
ssdOptions: [ discard ]
|
||||||
|
- filesystem: xfs
|
||||||
|
ssdOptions: [ discard ]
|
||||||
|
- filesystem: swap
|
||||||
|
ssdOptions: [ discard ]
|
||||||
|
|
6
debian/control
vendored
6
debian/control
vendored
|
@ -78,8 +78,14 @@ Depends: calamares,
|
||||||
rsync,
|
rsync,
|
||||||
cryptsetup,
|
cryptsetup,
|
||||||
libglib2.0-bin,
|
libglib2.0-bin,
|
||||||
|
kdialog,
|
||||||
keyutils,
|
keyutils,
|
||||||
|
lvm2,
|
||||||
pkexec,
|
pkexec,
|
||||||
|
python3-distro,
|
||||||
|
python3-toml,
|
||||||
|
qml6-module-qtquick-window,
|
||||||
|
qml6-module-qtquick,
|
||||||
qml-module-qtquick-window2,
|
qml-module-qtquick-window2,
|
||||||
qml-module-qtquick2,
|
qml-module-qtquick2,
|
||||||
${misc:Depends}
|
${misc:Depends}
|
||||||
|
|
1
debian/rules
vendored
1
debian/rules
vendored
|
@ -15,6 +15,7 @@ override_dh_missing:
|
||||||
mkdir -pv debian/calamares-settings-tileos-common/etc/calamares/modules
|
mkdir -pv debian/calamares-settings-tileos-common/etc/calamares/modules
|
||||||
mkdir -pv debian/calamares-settings-tileos-common/usr/sbin
|
mkdir -pv debian/calamares-settings-tileos-common/usr/sbin
|
||||||
cp -vr common/modules/*.conf debian/calamares-settings-tileos-common/etc/calamares/modules
|
cp -vr common/modules/*.conf debian/calamares-settings-tileos-common/etc/calamares/modules
|
||||||
|
cp -vr common/modules/*.yaml debian/calamares-settings-tileos-common/etc/calamares/modules
|
||||||
mkdir -pv debian/calamares-settings-tileos-common/usr/share/calamares/helpers
|
mkdir -pv debian/calamares-settings-tileos-common/usr/share/calamares/helpers
|
||||||
cp -vr helpers/* debian/calamares-settings-tileos-common/usr/share/calamares/helpers
|
cp -vr helpers/* debian/calamares-settings-tileos-common/usr/share/calamares/helpers
|
||||||
chmod -R 755 debian/calamares-settings-tileos-common/usr/lib/
|
chmod -R 755 debian/calamares-settings-tileos-common/usr/lib/
|
||||||
|
|
|
@ -24,6 +24,6 @@ slideshow: "show.qml"
|
||||||
style:
|
style:
|
||||||
SidebarBackground: "#1e2030"
|
SidebarBackground: "#1e2030"
|
||||||
SidebarText: "#cad3f5"
|
SidebarText: "#cad3f5"
|
||||||
SidebarTextSelect: "#24273a"
|
SidebarTextCurrent: "#24273a"
|
||||||
|
|
||||||
slideshowAPI: 2
|
slideshowAPI: 2
|
||||||
|
|
|
@ -1,6 +1,21 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
enableLuksAutomatedPartitioning: true
|
enableLuksAutomatedPartitioning: true
|
||||||
|
luksGeneration: luks2
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none
|
- none
|
||||||
|
- file
|
||||||
|
initialSwapChoice: none
|
||||||
drawNestedPartitions: true
|
drawNestedPartitions: true
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
availableFileSystemTypes: ["ext4","btrfs","xfs"]
|
||||||
|
partitionLayout:
|
||||||
|
- name: "tileos_boot"
|
||||||
|
filesystem: ext4
|
||||||
|
noEncrypt: true
|
||||||
|
onlyPresentWithEncryption: true
|
||||||
|
mountPoint: "/boot"
|
||||||
|
size: 4G
|
||||||
|
- name: "tileos_rootfs"
|
||||||
|
filesystem: unknown
|
||||||
|
mountPoint: "/"
|
||||||
|
size: 100%
|
||||||
|
|
|
@ -1,17 +1,78 @@
|
||||||
---
|
---
|
||||||
userGroup: users
|
doAutologin: false
|
||||||
defaultGroups:
|
|
||||||
- cdrom
|
|
||||||
- floppy
|
|
||||||
- sudo
|
|
||||||
- audio
|
|
||||||
- dip
|
|
||||||
- video
|
|
||||||
- plugdev
|
|
||||||
- netdev
|
|
||||||
- lpadmin
|
|
||||||
- scanner
|
|
||||||
- bluetooth
|
|
||||||
autologinGroup: autologin
|
|
||||||
sudoersGroup: sudo
|
|
||||||
setRootPassword: false
|
setRootPassword: false
|
||||||
|
sudoersGroup: sudo
|
||||||
|
defaultGroups:
|
||||||
|
- adm
|
||||||
|
- cdrom
|
||||||
|
- dip
|
||||||
|
- lpadmin
|
||||||
|
- plugdev
|
||||||
|
- name: sambashare
|
||||||
|
must_exist: false
|
||||||
|
system: true
|
||||||
|
- sudo
|
||||||
|
- video
|
||||||
|
passwordRequirements:
|
||||||
|
minLength: 8
|
||||||
|
maxLength: -1
|
||||||
|
libpwquality:
|
||||||
|
- minlen=8
|
||||||
|
- maxrepeat=3
|
||||||
|
- maxsequence=3
|
||||||
|
- usersubstr=4
|
||||||
|
- badwords=linux
|
||||||
|
allowWeakPasswords: false
|
||||||
|
allowWeakPasswordsDefault: false
|
||||||
|
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||||
|
# expectation derived from Ubuntu here.
|
||||||
|
user:
|
||||||
|
shell: /bin/bash
|
||||||
|
forbidden_names:
|
||||||
|
- root
|
||||||
|
- nginx
|
||||||
|
- www-data
|
||||||
|
- daemon
|
||||||
|
- bin
|
||||||
|
- sys
|
||||||
|
- sync
|
||||||
|
- games
|
||||||
|
- man
|
||||||
|
- lp
|
||||||
|
- mail
|
||||||
|
- news
|
||||||
|
- uucp
|
||||||
|
- proxy
|
||||||
|
- www-data
|
||||||
|
- backup
|
||||||
|
- list
|
||||||
|
- irc
|
||||||
|
- apt
|
||||||
|
- nobody
|
||||||
|
- systemd-network
|
||||||
|
- systemd-timesync
|
||||||
|
- dhcpcd
|
||||||
|
- messagebus
|
||||||
|
- syslog
|
||||||
|
- systemd-resolve
|
||||||
|
- usbmux
|
||||||
|
- tss
|
||||||
|
- uuidd
|
||||||
|
- whoopsie
|
||||||
|
- dnsmasq
|
||||||
|
- avahi
|
||||||
|
- nm-openvpn
|
||||||
|
- tcpdump
|
||||||
|
- speech-dispatcher
|
||||||
|
- cups-pk-helper
|
||||||
|
- fwupd-refresh
|
||||||
|
- sddm
|
||||||
|
- saned
|
||||||
|
- cups-browsed
|
||||||
|
- hplip
|
||||||
|
- polkitd
|
||||||
|
- rtkit
|
||||||
|
- colord
|
||||||
|
- geoclue
|
||||||
|
- installer
|
||||||
|
allowActiveDirectory: true
|
||||||
|
|
|
@ -22,9 +22,8 @@ images:
|
||||||
slideshow: "show.qml"
|
slideshow: "show.qml"
|
||||||
|
|
||||||
style:
|
style:
|
||||||
sidebarBackground: "#1e2030"
|
SidebarBackground: "#1e2030"
|
||||||
sidebarText: "#cad3f5"
|
SidebarText: "#cad3f5"
|
||||||
sidebarTextSelect: "#24273a"
|
SidebarTextCurrent: "#24273a"
|
||||||
sidebarTextSelect: "#24273a"
|
|
||||||
|
|
||||||
slideshowAPI: 2
|
slideshowAPI: 2
|
||||||
|
|
|
@ -1,6 +1,21 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
enableLuksAutomatedPartitioning: true
|
enableLuksAutomatedPartitioning: true
|
||||||
|
luksGeneration: luks2
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none
|
- none
|
||||||
|
- file
|
||||||
|
initialSwapChoice: none
|
||||||
drawNestedPartitions: true
|
drawNestedPartitions: true
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
availableFileSystemTypes: ["ext4","btrfs","xfs"]
|
||||||
|
partitionLayout:
|
||||||
|
- name: "tileos_boot"
|
||||||
|
filesystem: ext4
|
||||||
|
noEncrypt: true
|
||||||
|
onlyPresentWithEncryption: true
|
||||||
|
mountPoint: "/boot"
|
||||||
|
size: 4G
|
||||||
|
- name: "tileos_rootfs"
|
||||||
|
filesystem: unknown
|
||||||
|
mountPoint: "/"
|
||||||
|
size: 100%
|
||||||
|
|
|
@ -1,17 +1,78 @@
|
||||||
---
|
---
|
||||||
userGroup: users
|
doAutologin: false
|
||||||
defaultGroups:
|
|
||||||
- cdrom
|
|
||||||
- floppy
|
|
||||||
- sudo
|
|
||||||
- audio
|
|
||||||
- dip
|
|
||||||
- video
|
|
||||||
- plugdev
|
|
||||||
- netdev
|
|
||||||
- lpadmin
|
|
||||||
- scanner
|
|
||||||
- bluetooth
|
|
||||||
autologinGroup: autologin
|
|
||||||
sudoersGroup: sudo
|
|
||||||
setRootPassword: false
|
setRootPassword: false
|
||||||
|
sudoersGroup: sudo
|
||||||
|
defaultGroups:
|
||||||
|
- adm
|
||||||
|
- cdrom
|
||||||
|
- dip
|
||||||
|
- lpadmin
|
||||||
|
- plugdev
|
||||||
|
- name: sambashare
|
||||||
|
must_exist: false
|
||||||
|
system: true
|
||||||
|
- sudo
|
||||||
|
- video
|
||||||
|
passwordRequirements:
|
||||||
|
minLength: 8
|
||||||
|
maxLength: -1
|
||||||
|
libpwquality:
|
||||||
|
- minlen=8
|
||||||
|
- maxrepeat=3
|
||||||
|
- maxsequence=3
|
||||||
|
- usersubstr=4
|
||||||
|
- badwords=linux
|
||||||
|
allowWeakPasswords: false
|
||||||
|
allowWeakPasswordsDefault: false
|
||||||
|
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||||
|
# expectation derived from Ubuntu here.
|
||||||
|
user:
|
||||||
|
shell: /bin/bash
|
||||||
|
forbidden_names:
|
||||||
|
- root
|
||||||
|
- nginx
|
||||||
|
- www-data
|
||||||
|
- daemon
|
||||||
|
- bin
|
||||||
|
- sys
|
||||||
|
- sync
|
||||||
|
- games
|
||||||
|
- man
|
||||||
|
- lp
|
||||||
|
- mail
|
||||||
|
- news
|
||||||
|
- uucp
|
||||||
|
- proxy
|
||||||
|
- www-data
|
||||||
|
- backup
|
||||||
|
- list
|
||||||
|
- irc
|
||||||
|
- apt
|
||||||
|
- nobody
|
||||||
|
- systemd-network
|
||||||
|
- systemd-timesync
|
||||||
|
- dhcpcd
|
||||||
|
- messagebus
|
||||||
|
- syslog
|
||||||
|
- systemd-resolve
|
||||||
|
- usbmux
|
||||||
|
- tss
|
||||||
|
- uuidd
|
||||||
|
- whoopsie
|
||||||
|
- dnsmasq
|
||||||
|
- avahi
|
||||||
|
- nm-openvpn
|
||||||
|
- tcpdump
|
||||||
|
- speech-dispatcher
|
||||||
|
- cups-pk-helper
|
||||||
|
- fwupd-refresh
|
||||||
|
- sddm
|
||||||
|
- saned
|
||||||
|
- cups-browsed
|
||||||
|
- hplip
|
||||||
|
- polkitd
|
||||||
|
- rtkit
|
||||||
|
- colord
|
||||||
|
- geoclue
|
||||||
|
- installer
|
||||||
|
allowActiveDirectory: true
|
||||||
|
|
|
@ -24,6 +24,6 @@ slideshow: "show.qml"
|
||||||
style:
|
style:
|
||||||
SidebarBackground: "#1e2030"
|
SidebarBackground: "#1e2030"
|
||||||
SidebarText: "#cad3f5"
|
SidebarText: "#cad3f5"
|
||||||
SidebarTextSelect: "#24273a"
|
SidebarTextCurrent: "#24273a"
|
||||||
|
|
||||||
slideshowAPI: 2
|
slideshowAPI: 2
|
||||||
|
|
|
@ -1,8 +1,21 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
enableLuksAutomatedPartitioning: true
|
enableLuksAutomatedPartitioning: true
|
||||||
|
luksGeneration: luks2
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none
|
- none
|
||||||
- file
|
- file
|
||||||
initialSwapChoice: file
|
initialSwapChoice: none
|
||||||
drawNestedPartitions: true
|
drawNestedPartitions: true
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
availableFileSystemTypes: ["ext4","btrfs","xfs"]
|
||||||
|
partitionLayout:
|
||||||
|
- name: "tileos_boot"
|
||||||
|
filesystem: ext4
|
||||||
|
noEncrypt: true
|
||||||
|
onlyPresentWithEncryption: true
|
||||||
|
mountPoint: "/boot"
|
||||||
|
size: 4G
|
||||||
|
- name: "tileos_rootfs"
|
||||||
|
filesystem: unknown
|
||||||
|
mountPoint: "/"
|
||||||
|
size: 100%
|
||||||
|
|
|
@ -1,17 +1,78 @@
|
||||||
---
|
---
|
||||||
userGroup: users
|
doAutologin: false
|
||||||
defaultGroups:
|
|
||||||
- cdrom
|
|
||||||
- floppy
|
|
||||||
- sudo
|
|
||||||
- audio
|
|
||||||
- dip
|
|
||||||
- video
|
|
||||||
- plugdev
|
|
||||||
- netdev
|
|
||||||
- lpadmin
|
|
||||||
- scanner
|
|
||||||
- bluetooth
|
|
||||||
autologinGroup: autologin
|
|
||||||
sudoersGroup: sudo
|
|
||||||
setRootPassword: false
|
setRootPassword: false
|
||||||
|
sudoersGroup: sudo
|
||||||
|
defaultGroups:
|
||||||
|
- adm
|
||||||
|
- cdrom
|
||||||
|
- dip
|
||||||
|
- lpadmin
|
||||||
|
- plugdev
|
||||||
|
- name: sambashare
|
||||||
|
must_exist: false
|
||||||
|
system: true
|
||||||
|
- sudo
|
||||||
|
- video
|
||||||
|
passwordRequirements:
|
||||||
|
minLength: 8
|
||||||
|
maxLength: -1
|
||||||
|
libpwquality:
|
||||||
|
- minlen=8
|
||||||
|
- maxrepeat=3
|
||||||
|
- maxsequence=3
|
||||||
|
- usersubstr=4
|
||||||
|
- badwords=linux
|
||||||
|
allowWeakPasswords: false
|
||||||
|
allowWeakPasswordsDefault: false
|
||||||
|
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||||
|
# expectation derived from Ubuntu here.
|
||||||
|
user:
|
||||||
|
shell: /bin/bash
|
||||||
|
forbidden_names:
|
||||||
|
- root
|
||||||
|
- nginx
|
||||||
|
- www-data
|
||||||
|
- daemon
|
||||||
|
- bin
|
||||||
|
- sys
|
||||||
|
- sync
|
||||||
|
- games
|
||||||
|
- man
|
||||||
|
- lp
|
||||||
|
- mail
|
||||||
|
- news
|
||||||
|
- uucp
|
||||||
|
- proxy
|
||||||
|
- www-data
|
||||||
|
- backup
|
||||||
|
- list
|
||||||
|
- irc
|
||||||
|
- apt
|
||||||
|
- nobody
|
||||||
|
- systemd-network
|
||||||
|
- systemd-timesync
|
||||||
|
- dhcpcd
|
||||||
|
- messagebus
|
||||||
|
- syslog
|
||||||
|
- systemd-resolve
|
||||||
|
- usbmux
|
||||||
|
- tss
|
||||||
|
- uuidd
|
||||||
|
- whoopsie
|
||||||
|
- dnsmasq
|
||||||
|
- avahi
|
||||||
|
- nm-openvpn
|
||||||
|
- tcpdump
|
||||||
|
- speech-dispatcher
|
||||||
|
- cups-pk-helper
|
||||||
|
- fwupd-refresh
|
||||||
|
- sddm
|
||||||
|
- saned
|
||||||
|
- cups-browsed
|
||||||
|
- hplip
|
||||||
|
- polkitd
|
||||||
|
- rtkit
|
||||||
|
- colord
|
||||||
|
- geoclue
|
||||||
|
- installer
|
||||||
|
allowActiveDirectory: true
|
||||||
|
|
|
@ -24,6 +24,6 @@ slideshow: "show.qml"
|
||||||
style:
|
style:
|
||||||
SidebarBackground: "#1e2030"
|
SidebarBackground: "#1e2030"
|
||||||
SidebarText: "#cad3f5"
|
SidebarText: "#cad3f5"
|
||||||
SidebarTextSelect: "#24273a"
|
SidebarTextCurrent: "#24273a"
|
||||||
|
|
||||||
slideshowAPI: 2
|
slideshowAPI: 2
|
||||||
|
|
|
@ -1,6 +1,21 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
enableLuksAutomatedPartitioning: true
|
enableLuksAutomatedPartitioning: true
|
||||||
|
luksGeneration: luks2
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none
|
- none
|
||||||
|
- file
|
||||||
|
initialSwapChoice: none
|
||||||
drawNestedPartitions: true
|
drawNestedPartitions: true
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
availableFileSystemTypes: ["ext4","btrfs","xfs"]
|
||||||
|
partitionLayout:
|
||||||
|
- name: "tileos_boot"
|
||||||
|
filesystem: ext4
|
||||||
|
noEncrypt: true
|
||||||
|
onlyPresentWithEncryption: true
|
||||||
|
mountPoint: "/boot"
|
||||||
|
size: 4G
|
||||||
|
- name: "tileos_rootfs"
|
||||||
|
filesystem: unknown
|
||||||
|
mountPoint: "/"
|
||||||
|
size: 100%
|
||||||
|
|
|
@ -1,17 +1,78 @@
|
||||||
---
|
---
|
||||||
userGroup: users
|
doAutologin: false
|
||||||
defaultGroups:
|
|
||||||
- cdrom
|
|
||||||
- floppy
|
|
||||||
- sudo
|
|
||||||
- audio
|
|
||||||
- dip
|
|
||||||
- video
|
|
||||||
- plugdev
|
|
||||||
- netdev
|
|
||||||
- lpadmin
|
|
||||||
- scanner
|
|
||||||
- bluetooth
|
|
||||||
autologinGroup: autologin
|
|
||||||
sudoersGroup: sudo
|
|
||||||
setRootPassword: false
|
setRootPassword: false
|
||||||
|
sudoersGroup: sudo
|
||||||
|
defaultGroups:
|
||||||
|
- adm
|
||||||
|
- cdrom
|
||||||
|
- dip
|
||||||
|
- lpadmin
|
||||||
|
- plugdev
|
||||||
|
- name: sambashare
|
||||||
|
must_exist: false
|
||||||
|
system: true
|
||||||
|
- sudo
|
||||||
|
- video
|
||||||
|
passwordRequirements:
|
||||||
|
minLength: 8
|
||||||
|
maxLength: -1
|
||||||
|
libpwquality:
|
||||||
|
- minlen=8
|
||||||
|
- maxrepeat=3
|
||||||
|
- maxsequence=3
|
||||||
|
- usersubstr=4
|
||||||
|
- badwords=linux
|
||||||
|
allowWeakPasswords: false
|
||||||
|
allowWeakPasswordsDefault: false
|
||||||
|
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||||
|
# expectation derived from Ubuntu here.
|
||||||
|
user:
|
||||||
|
shell: /bin/bash
|
||||||
|
forbidden_names:
|
||||||
|
- root
|
||||||
|
- nginx
|
||||||
|
- www-data
|
||||||
|
- daemon
|
||||||
|
- bin
|
||||||
|
- sys
|
||||||
|
- sync
|
||||||
|
- games
|
||||||
|
- man
|
||||||
|
- lp
|
||||||
|
- mail
|
||||||
|
- news
|
||||||
|
- uucp
|
||||||
|
- proxy
|
||||||
|
- www-data
|
||||||
|
- backup
|
||||||
|
- list
|
||||||
|
- irc
|
||||||
|
- apt
|
||||||
|
- nobody
|
||||||
|
- systemd-network
|
||||||
|
- systemd-timesync
|
||||||
|
- dhcpcd
|
||||||
|
- messagebus
|
||||||
|
- syslog
|
||||||
|
- systemd-resolve
|
||||||
|
- usbmux
|
||||||
|
- tss
|
||||||
|
- uuidd
|
||||||
|
- whoopsie
|
||||||
|
- dnsmasq
|
||||||
|
- avahi
|
||||||
|
- nm-openvpn
|
||||||
|
- tcpdump
|
||||||
|
- speech-dispatcher
|
||||||
|
- cups-pk-helper
|
||||||
|
- fwupd-refresh
|
||||||
|
- sddm
|
||||||
|
- saned
|
||||||
|
- cups-browsed
|
||||||
|
- hplip
|
||||||
|
- polkitd
|
||||||
|
- rtkit
|
||||||
|
- colord
|
||||||
|
- geoclue
|
||||||
|
- installer
|
||||||
|
allowActiveDirectory: true
|
||||||
|
|
|
@ -24,6 +24,6 @@ slideshow: "show.qml"
|
||||||
style:
|
style:
|
||||||
SidebarBackground: "#1e2030"
|
SidebarBackground: "#1e2030"
|
||||||
SidebarText: "#cad3f5"
|
SidebarText: "#cad3f5"
|
||||||
SidebarTextSelect: "#24273a"
|
SidebarTextCurrent: "#24273a"
|
||||||
|
|
||||||
slideshowAPI: 2
|
slideshowAPI: 2
|
||||||
|
|
|
@ -1,6 +1,21 @@
|
||||||
efiSystemPartition: "/boot/efi"
|
efiSystemPartition: "/boot/efi"
|
||||||
enableLuksAutomatedPartitioning: true
|
enableLuksAutomatedPartitioning: true
|
||||||
|
luksGeneration: luks2
|
||||||
userSwapChoices:
|
userSwapChoices:
|
||||||
- none
|
- none
|
||||||
|
- file
|
||||||
|
initialSwapChoice: none
|
||||||
drawNestedPartitions: true
|
drawNestedPartitions: true
|
||||||
defaultFileSystemType: "ext4"
|
defaultFileSystemType: "ext4"
|
||||||
|
availableFileSystemTypes: ["ext4","btrfs","xfs"]
|
||||||
|
partitionLayout:
|
||||||
|
- name: "tileos_boot"
|
||||||
|
filesystem: ext4
|
||||||
|
noEncrypt: true
|
||||||
|
onlyPresentWithEncryption: true
|
||||||
|
mountPoint: "/boot"
|
||||||
|
size: 4G
|
||||||
|
- name: "tileos_rootfs"
|
||||||
|
filesystem: unknown
|
||||||
|
mountPoint: "/"
|
||||||
|
size: 100%
|
||||||
|
|
|
@ -1,17 +1,78 @@
|
||||||
---
|
---
|
||||||
userGroup: users
|
doAutologin: false
|
||||||
defaultGroups:
|
|
||||||
- cdrom
|
|
||||||
- floppy
|
|
||||||
- sudo
|
|
||||||
- audio
|
|
||||||
- dip
|
|
||||||
- video
|
|
||||||
- plugdev
|
|
||||||
- netdev
|
|
||||||
- lpadmin
|
|
||||||
- scanner
|
|
||||||
- bluetooth
|
|
||||||
autologinGroup: autologin
|
|
||||||
sudoersGroup: sudo
|
|
||||||
setRootPassword: false
|
setRootPassword: false
|
||||||
|
sudoersGroup: sudo
|
||||||
|
defaultGroups:
|
||||||
|
- adm
|
||||||
|
- cdrom
|
||||||
|
- dip
|
||||||
|
- lpadmin
|
||||||
|
- plugdev
|
||||||
|
- name: sambashare
|
||||||
|
must_exist: false
|
||||||
|
system: true
|
||||||
|
- sudo
|
||||||
|
- video
|
||||||
|
passwordRequirements:
|
||||||
|
minLength: 8
|
||||||
|
maxLength: -1
|
||||||
|
libpwquality:
|
||||||
|
- minlen=8
|
||||||
|
- maxrepeat=3
|
||||||
|
- maxsequence=3
|
||||||
|
- usersubstr=4
|
||||||
|
- badwords=linux
|
||||||
|
allowWeakPasswords: false
|
||||||
|
allowWeakPasswordsDefault: false
|
||||||
|
# Explicitly set the shell instead of deferring to Calamares. We have a platform
|
||||||
|
# expectation derived from Ubuntu here.
|
||||||
|
user:
|
||||||
|
shell: /bin/bash
|
||||||
|
forbidden_names:
|
||||||
|
- root
|
||||||
|
- nginx
|
||||||
|
- www-data
|
||||||
|
- daemon
|
||||||
|
- bin
|
||||||
|
- sys
|
||||||
|
- sync
|
||||||
|
- games
|
||||||
|
- man
|
||||||
|
- lp
|
||||||
|
- mail
|
||||||
|
- news
|
||||||
|
- uucp
|
||||||
|
- proxy
|
||||||
|
- www-data
|
||||||
|
- backup
|
||||||
|
- list
|
||||||
|
- irc
|
||||||
|
- apt
|
||||||
|
- nobody
|
||||||
|
- systemd-network
|
||||||
|
- systemd-timesync
|
||||||
|
- dhcpcd
|
||||||
|
- messagebus
|
||||||
|
- syslog
|
||||||
|
- systemd-resolve
|
||||||
|
- usbmux
|
||||||
|
- tss
|
||||||
|
- uuidd
|
||||||
|
- whoopsie
|
||||||
|
- dnsmasq
|
||||||
|
- avahi
|
||||||
|
- nm-openvpn
|
||||||
|
- tcpdump
|
||||||
|
- speech-dispatcher
|
||||||
|
- cups-pk-helper
|
||||||
|
- fwupd-refresh
|
||||||
|
- sddm
|
||||||
|
- saned
|
||||||
|
- cups-browsed
|
||||||
|
- hplip
|
||||||
|
- polkitd
|
||||||
|
- rtkit
|
||||||
|
- colord
|
||||||
|
- geoclue
|
||||||
|
- installer
|
||||||
|
allowActiveDirectory: true
|
||||||
|
|
Loading…
Add table
Reference in a new issue