more misc fixes

This commit is contained in:
Barrett Ruth 2026-02-10 20:29:05 -05:00
parent 749f79c4b6
commit df0035aba9
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
5 changed files with 9 additions and 9 deletions

View file

@ -14,7 +14,7 @@ let
"dl" "dl"
"img" "img"
"img/screen" "img/screen"
"wp" "img/wp"
]; ];
in in
{ {

View file

@ -60,7 +60,7 @@ in
fi fi
profile="" profile=""
for d in "$zen_config"/*.Default\ \(release\); do for d in "$zen_config"/*.Default\ Profile; do
[ -d "$d" ] && profile="$d" && break [ -d "$d" ] && profile="$d" && break
done done

View file

@ -170,7 +170,7 @@ in
programs.zsh = { programs.zsh = {
enable = true; enable = true;
dotDir = "${config.xdg.configHome}/zsh"; dotDir = ".config/zsh";
history = { history = {
path = "${config.xdg.stateHome}/zsh_history"; path = "${config.xdg.stateHome}/zsh_history";
@ -266,6 +266,10 @@ in
''; '';
}; };
home.activation.removeZshenvBridge = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
[ -L "$HOME/.zshenv" ] && rm "$HOME/.zshenv" || true
'';
programs.fzf = { programs.fzf = {
enable = true; enable = true;
enableZshIntegration = true; enableZshIntegration = true;
@ -434,6 +438,7 @@ in
set -g lock-after-time 300 set -g lock-after-time 300
set -g lock-command "pipes -p 2" set -g lock-command "pipes -p 2"
set -g @resurrect-dir '~/.local/state/tmux/resurrect'
set -g @resurrect-capture-pane-contents on set -g @resurrect-capture-pane-contents on
''; '';
}; };

View file

@ -69,7 +69,7 @@ in
package = pkgs.apple-cursor; package = pkgs.apple-cursor;
size = 24; size = 24;
gtk.enable = true; gtk.enable = true;
x11.enable = true; x11.enable = false;
}; };
home.file.".local/share/fonts".source = home.file.".local/share/fonts".source =

View file

@ -38,9 +38,6 @@ in
pamixer pamixer
socat socat
(python3.withPackages (ps: [ ps.pillow ])) (python3.withPackages (ps: [ ps.pillow ]))
xinit
xmodmap
xrdb
]; ];
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
@ -540,6 +537,4 @@ in
$DRY_RUN_CMD ln -sf "${config.xdg.configHome}/waybar/themes/${config.theme}.css" "$target" $DRY_RUN_CMD ln -sf "${config.xdg.configHome}/waybar/themes/${config.theme}.css" "$target"
''; '';
xdg.configFile."X11".source =
config.lib.file.mkOutOfStoreSymlink "${config.home.homeDirectory}/.config/nix/config/X11";
} }