Skip to content

Commit a9518b3

Browse files
committed
update pkg
1 parent 9f0fac1 commit a9518b3

File tree

12 files changed

+52
-47
lines changed

12 files changed

+52
-47
lines changed

debian/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
calamares-settings-nitrux (2.3.2) nitrux; urgency=medium
2+
3+
* Use the correct syntax for module configuration.
4+
* Remove unused module conf file.
5+
* Use luks1 because GRUB doesn't support argon2id.
6+
* Change execution order of modules.
7+
8+
-- Uri Herrera <uri_herrera@nxos.org> Thu, 09 Oct 2025 23:29:00 -0500
9+
110
calamares-settings-nitrux (2.3.1) nitrux; urgency=medium
211

312
* Add package dependency.

etc/calamares/modules/bootloader.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ grubCfg: "/boot/grub/grub.cfg"
1010
grubProbe: "grub-probe"
1111
efiBootMgr: "efibootmgr"
1212

13-
# efiBootloaderId: "dirname"
14-
1513
installEFIFallback: false
14+
15+
installHybridGRUB: false

etc/calamares/modules/displaymanager.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ displaymanagers:
77

88
defaultDesktopEnvironment:
99
executable: "/usr/bin/Hyprland"
10-
desktopFile: "hyprland.desktop"
10+
desktopFile: "hyprland"
1111

1212
basicSetup: false
1313
sysconfigSetup: false

etc/calamares/modules/fstab.conf

Lines changed: 1 addition & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,4 @@
22
# SPDX-License-Identifier: CC0-1.0
33
#
44
---
5-
mountOptions:
6-
default: defaults
7-
btrfs: defaults,noatime,space_cache=v2,autodefrag,compress=zstd
8-
xfs: defaults,inode64
9-
f2fs: defaults,compress_algorithm=zstd:6,compress_chksum,atgc,gc_merge,lazytime
10-
11-
ssdExtraMountOptions:
12-
ext4: discard
13-
jfs: discard
14-
xfs: discard
15-
swap: discard
16-
btrfs: ssd,compress=zstd,commit=120
17-
18-
crypttabOptions: luks,keyscript=/bin/cat
19-
20-
efiMountOptions: umask=0077
5+
crypttabOptions: luks

etc/calamares/modules/grubcfg.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,11 @@
33
#
44
---
55
overwrite: false
6+
prefer_grub_d: false
67
keepDistributor: false
8+
79
kernel_params: ["amd_prefcore=enabled amd_pstate=active amdgpu.cik_support=1 amdgpu.ppfeaturemask=0xffffffff amdgpu.si_support=1 amdgpu.vm_update_mode=3 apparmor=1 audit=0 clocksource=tsc fsck.mode=skip hardened_usercopy=1 hpet=disable init_on_free=1 intel_pstate=enable kfence=off libahci.ignore_sss=1 lsm=capability,yama,bpf,apparmor,landlock modprobe.blacklist=iTCO_wdt,sp5100_tco_tco nohz=on nosgx nvidia_drm.modeset=1 nvme_core.multipath=Y overlayroot=tmpfs:swap=1,recurse=0 page_alloc.shuffle=1 pti=on quiet radeon.cik_support=0 radeon.si_support=0 randomize_kstack_offset=1 rcu_nocbs=all rcupdate.rcu_expedited=1 rcutree.enable_rcu_lazy=1 slab_nomerge tsc=nowatchdog tsc=reliable usbcore.autosuspend=-1 vdso32=0 vsyscall=none xhci_hcd.quirks=270336 zswap.compressor=zstd zswap.enabled=1 zswap.max_pool_percent=20 zswap.zpool=zsmalloc"]
10+
811
defaults:
912
GRUB_DEFAULT: "saved"
1013
GRUB_DISABLE_OS_PROBER: false

etc/calamares/modules/keyboard.conf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
#
44
---
55
xOrgConfFileName: "/etc/X11/xorg.conf.d/00-keyboard.conf"
6-
#writeEtcDefaultKeyboard: true

etc/calamares/modules/luksbootkeyfile.conf

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,4 @@
22
# SPDX-License-Identifier: CC0-1.0
33
#
44
---
5-
# Set Password-Based Key Derivation Function (PBKDF) algorithm
6-
# for LUKS keyslot.
7-
#
8-
# There are three usable values: pbkdf2, argon2i or argon2id.
9-
#
10-
# When not set, the cryptsetup default is used
11-
#luks2Hash: argon2id
12-
13-
# An optional variable from global storage which holds the bootloader and is used to
14-
# override the value of efiSystemPartition
15-
#efiBootLoaderVar: ""
5+
luks2Hash: default

etc/calamares/modules/mount.conf

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,23 @@ extraMounts:
2525
- device: /dev/pts
2626
mountPoint: /dev/pts
2727
options: [ bind ]
28+
29+
mountOptions:
30+
- filesystem: default
31+
options: [ defaults ]
32+
- filesystem: efi
33+
options: [ umask=0077 ]
34+
- filesystem: btrfs
35+
options: [ defaults, noatime, space_cache=v2, autodefrag, compress=zstd ]
36+
ssdOptions: [ ssd, compress=zstd, commit=120 ]
37+
- filesystem: xfs
38+
options: [ defaults, inode64 ]
39+
ssdOptions: [ discard ]
40+
- filesystem: f2fs
41+
options: [ defaults, compress_algorithm=zstd:6, compress_chksum, atgc, gc_merge, lazytime ]
42+
- filesystem: ext4
43+
ssdOptions: [ discard ]
44+
- filesystem: jfs
45+
ssdOptions: [ discard ]
46+
- filesystem: swap
47+
ssdOptions: [ discard ]

etc/calamares/modules/partition.conf

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
# SPDX-License-Identifier: CC0-1.0
33
#
44
---
5-
efiSystemPartition: "/boot/efi"
6-
efiSystemPartitionSize: 100M
7-
efiSystemPartitionName: ESP
5+
efi:
6+
mountPoint: "/boot/efi"
7+
recommendedSize: 100MiB
8+
label: "ESP"
89

910
userSwapChoices:
1011
- none
@@ -14,7 +15,7 @@ userSwapChoices:
1415

1516
swapPartitionName: SWAP
1617

17-
luksGeneration: luks2
18+
luksGeneration: luks1
1819

1920
drawNestedPartitions: true
2021
alwaysShowPartitionLabels: true
@@ -23,9 +24,7 @@ allowManualPartitioning: true
2324
initialPartitioningChoice: manual
2425
initialSwapChoice: small
2526

26-
defaultPartitionTableType:
27-
- gpt
28-
- msdos
27+
defaultPartitionTableType: gpt
2928

3029
requiredPartitionTableType:
3130
- gpt
@@ -46,12 +45,12 @@ partitionLayout:
4645
mountPoint: "/home"
4746
size: 67%
4847
features:
49-
compression
50-
encryption
48+
compression: true
49+
encryption: true
5150
- name: "NX_VAR_LIB"
5251
filesystem: "f2fs"
5352
mountPoint: "/var/lib"
5453
size: 10%
5554
features:
56-
compression
57-
encryption
55+
compression: true
56+
encryption: true

etc/calamares/modules/services-openrc.conf

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,4 @@ initdDir: /etc/init.d
77
runlevelsDir: /etc/runlevels
88

99
services: []
10-
disable:
11-
- name: pulseaudio-enable-autospawn
12-
runlevel: default
10+
disable: []

0 commit comments

Comments
 (0)