Compare commits

..

No commits in common. "66f124864696d6666750d61b13eb6ecbf94388ba" and "f61416748aed28b6a610f265e67c8b62e7e68557" have entirely different histories.

4 changed files with 7 additions and 25 deletions

View File

@ -16,7 +16,6 @@ in
./syncthing.nix
./fzf.nix
./jj.nix
./zellij.nix
./packages.nix
];
@ -38,9 +37,6 @@ in
# env vars
home.sessionVariables = {};
# don't install xdg info:
xdg.mime.enable = false;
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;

View File

@ -30,20 +30,22 @@ in
discord
freshfetch
neofetch
stable.obsidian
dfc
(nixGL anki)
(nixGL digikam)
deno
stable.nodejs_21
signal-desktop
yt-dlp
(pkgs.callPackage ./custom/fortune-kind-custom.nix {})
(nixGL aseprite)
(nixGL musescore)
fend
timg
graphviz
(nixGL zotero)
nix-output-monitor
npins
odin
decker
];
}

View File

@ -6,7 +6,7 @@ function current_dir() {
else
current_dir=${current_dir##*/}
fi
echo $current_dir
}
@ -33,21 +33,6 @@ if [[ -n $ZELLIJ ]]; then
add-zsh-hook preexec set_tab_to_command_line
fi
# git aliases
function git_aliases() {
echo "git aliases:"
echo "\tgs: status -sb"
echo "\tgl: log --oneline"
echo "\tglast: log -1 HEAD --stat"
echo "\tgds: diff --staged"
}
alias gs="git status -sb"
alias gl="git log --oneline"
alias glast="git log -1 HEAD --stat"
alias gds="git diff --staged"
# load Cargo
if [ -f "$HOME/.cargo/env" ]; then
. "$HOME/.cargo/env"
@ -77,7 +62,7 @@ function set_win_title(){
precmd_functions+=(set_win_title)
# start zellij
if [[ -v "$WITHZELLIJ" && "$TERM_PROGRAM" != "vscode" ]]; then
if [ "$TERM_PROGRAM" != "vscode" ]; then
eval "$(zellij setup --generate-auto-start zsh)"
fi

View File

@ -1,12 +1,11 @@
{ config, pkgs, ... }:
{
home.sessionVariables = {
ZELLIJ_AUTO_EXIT = "false";
ZELLIJ_AUTO_EXIT = "true";
};
programs.zellij= {
enable = true;
enableZshIntegration = false;
settings = {
copy_command = "${pkgs.xclip}/bin/xclip -selection clipboard";
};