aboutsummaryrefslogtreecommitdiff
path: root/AUTHORS
diff options
context:
space:
mode:
authorHilton Chain <hako@ultrarare.space>2024-11-06 08:40:39 +0800
committerHilton Chain <hako@ultrarare.space>2024-12-08 15:28:42 +0800
commit479deffa02a2dfdf93722f1044f67fddde92b004 (patch)
tree7bd461a524c169ce92edf6fb830edb2ee426132d /AUTHORS
parent4b9a950a209eb36cce1a74ec709810b2a9937485 (diff)
downloadguix-479deffa02a2dfdf93722f1044f67fddde92b004.tar.gz
guix-479deffa02a2dfdf93722f1044f67fddde92b004.zip
gnu: Add hyprcursor.
* gnu/packages/wm.scm (hyprcursor): New variable. Change-Id: I3e753cbaf75244adca65f0478cabd10c89af4286
Diffstat (limited to 'AUTHORS')
0 files changed, 0 insertions, 0 deletions
=dcb0e54a4f78e04b51f6820b9bbafb1716cb2d73'>file-systems: Invoke fsck tools with 'system*/tty'....This ensures those programs, if invoked by shepherd (where standard input is /dev/null), can still interact with the user if needed. * gnu/build/file-systems.scm (check-ext2-file-system) (check-bcachefs-file-system, check-btrfs-file-system): (check-fat-file-system, check-jfs-file-system): (check-f2fs-file-system, check-ntfs-file-system): (check-xfs-file-system): Use 'system*/tty' instead of 'system*'. Ludovic Courtès 2022-04-08mapped-devices: Ensure 'cryptsetup open' gets a tty....Fixes <https://issues.guix.gnu.org/54770>. Regression introduced in 400c9ed3d779308e56038305d40cd93acb496180. Previously, for an encrypted /home (say), "cryptsetup open" would be invoked by shepherd, with /dev/null as its standard input. It would thus run in non-interactive mode and, instead of asking for a passphrase, fail with: Nothing to read on input. This change ensures it runs in interactive mode. * gnu/build/file-systems.scm (system*/console, system*/tty): New procedures. * gnu/system/mapped-devices.scm (open-luks-device): Use 'system*/tty' instead of 'system*'. Ludovic Courtès 2021-11-23system: Add swap flags....* gnu/system/file-systems.scm (swap-space)[priority, discard?]: Add them. * guix/build/syscalls.scm (SWAP_FLAG_PREFER, SWAP_FLAG_PRIO_MASK, SWAP_FLAG_PRIO_SHIFT, SWAP_FLAG_DISCARD): Add them. * gnu/build/file-systems.scm (swap-space->flags-bit-mask): Add it. * gnu/services/base.scm (swap-service-type): Use it. Signed-off-by: Ludovic Courtès <ludo@gnu.org> Josselin Poiret