From 5bca51ab26fcf2c017ade0c530f5fc9c3ad6a2b5 Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Thu, 7 Sep 2023 09:36:33 +0300 Subject: fix(bashrc): overrride systemd env vars Sponsored-by: author --- bashrc | 7 ++++--- config/vmadm/config.yaml | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/bashrc b/bashrc index d51061a..657ccbf 100644 --- a/bashrc +++ b/bashrc @@ -153,6 +153,10 @@ prompt_command() { ulimit -c unlimited umask 002 + +# Get environment variables from systemd, if any are set. +. <(systemctl --user show-environment | sed 's/^/export /') + if command -v emacs >/dev/null; then export EDITOR=emacs else @@ -174,9 +178,6 @@ export PYTHONDONTWRITEBYTECODE=1 export STARSHIP_CONFIG=~/.config/starship/config.toml -# Get environment variables from systemd, if any are set. -. <(systemctl --user show-environment | sed 's/^/export /') - if [ -e "$HOME/tmp/cargo" ]; then export CARGO_TARGET_DIR="$HOME/tmp/cargo" elif [ -e "$HOME/cargo" ]; then diff --git a/config/vmadm/config.yaml b/config/vmadm/config.yaml index 7ea2cf5..db516ca 100644 --- a/config/vmadm/config.yaml +++ b/config/vmadm/config.yaml @@ -1,6 +1,6 @@ image_directory: ~/tmp/vms default_autostart: true -default_base_image: ~/tmp/base-images/bullseye-vm.qcow2 +default_base_image: ~/tmp/base-images/bookworm-vm.qcow2 default_cpus: 4 default_generate_host_certificate: true default_image_gib: 100 -- cgit v1.2.1