feat(minion): add atuin #11

merged
opened by a.starrysky.fyi targeting main from private/minion/push-rkknsxzmlnsk

We previously didn't use atuin because it was printing garbage characters in bash... by switching to zsh we seem to have avoided this problem :)

Changed files
+21
packetmix
homes
minion
+21
packetmix/homes/minion/atuin.nix
···
··· 1 + # SPDX-FileCopyrightText: 2025 FreshlyBakedCake 2 + # 3 + # SPDX-License-Identifier: MIT 4 + 5 + { 6 + programs.atuin = { 7 + enable = true; # We're using z4h so we don't have the problems with garbage... 8 + flags = [ "--disable-up-arrow" ]; 9 + settings = { 10 + dialect = "uk"; 11 + exit_mode = "return-query"; 12 + inline_height = 0; 13 + style = "auto"; 14 + update_check = false; 15 + }; 16 + }; 17 + 18 + clicks.storage.impermanence.persist.directories = [ 19 + ".local/share/atuin" 20 + ]; 21 + }