From a325abaa8c53d5f837cb9dd60e976e41a3c3a1fc Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Tue, 10 Jun 2025 16:51:19 -0700 Subject: [PATCH 1/5] stuff --- scripts/semiauto-snapshot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/semiauto-snapshot.sh b/scripts/semiauto-snapshot.sh index a55010a..62aa6e3 100755 --- a/scripts/semiauto-snapshot.sh +++ b/scripts/semiauto-snapshot.sh @@ -3,7 +3,7 @@ source shellvaculib.bash svl_exact_args $# 0 -svl_assert_root +svl_auto_root declare top_dataset="trip" snapshot_name snapshot_prefix declare -a previous_snapshots From c78e55673ac25d5f54ebdd3f58a4d5e80081fb5a Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Tue, 10 Jun 2025 16:52:46 -0700 Subject: [PATCH 2/5] stuff --- scripts/semiauto-snapshot.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/semiauto-snapshot.sh b/scripts/semiauto-snapshot.sh index 62aa6e3..0f83d4d 100755 --- a/scripts/semiauto-snapshot.sh +++ b/scripts/semiauto-snapshot.sh @@ -3,7 +3,7 @@ source shellvaculib.bash svl_exact_args $# 0 -svl_auto_root +svl_auto_sudo declare top_dataset="trip" snapshot_name snapshot_prefix declare -a previous_snapshots From 440cb70d77ee09a5c118655b7a2306514c602387 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Fri, 13 Jun 2025 06:50:37 -0700 Subject: [PATCH 3/5] stuff --- fw/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/fw/default.nix b/fw/default.nix index dd9bc1a..ce5537a 100644 --- a/fw/default.nix +++ b/fw/default.nix @@ -37,6 +37,7 @@ headsetcontrol openterface-qt intiface-central + osu-laser ''; services.power-profiles-daemon.enable = true; From 9da16179a8613f9e0dc8debc1c7d9950d97ad2a8 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Fri, 13 Jun 2025 06:52:18 -0700 Subject: [PATCH 4/5] stuff --- fw/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fw/default.nix b/fw/default.nix index ce5537a..db10dee 100644 --- a/fw/default.nix +++ b/fw/default.nix @@ -37,7 +37,7 @@ headsetcontrol openterface-qt intiface-central - osu-laser + osu-lazer ''; services.power-profiles-daemon.enable = true; From 3395ae83cec103896666093300706746dd351132 Mon Sep 17 00:00:00 2001 From: Shelvacu Date: Fri, 13 Jun 2025 13:13:12 -0700 Subject: [PATCH 5/5] stuff --- common/shell/tweaks.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 common/shell/tweaks.nix diff --git a/common/shell/tweaks.nix b/common/shell/tweaks.nix new file mode 100644 index 0000000..acab306 --- /dev/null +++ b/common/shell/tweaks.nix @@ -0,0 +1,11 @@ +{ ... }: +{ + config.vacu.shell.idempotentShellLines = '' + if [[ $- == *i* ]]; then + # don't overwrite files by default when using > redirection + set -o noclobber + # disable ! history expansion + set +o histexpand + fi + ''; +}