Updated flake inputs
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
{ lib, self, config, host, pkgs, ... }:
|
||||
|
||||
let
|
||||
scheme = "tokyo-night-dark";
|
||||
scheme = "ayu-dark";
|
||||
wallpaper = "${self}/assets/wallpapers/dark-waves.jpg";
|
||||
server = (host == "xenon");
|
||||
in {
|
||||
@@ -16,10 +16,11 @@ in {
|
||||
image = wallpaper;
|
||||
polarity = "dark";
|
||||
autoEnable = true;
|
||||
opacity.terminal = 0.5;
|
||||
opacity.terminal = 1.0;
|
||||
targets = {
|
||||
waybar.enable = false;
|
||||
btop.enable = false;
|
||||
nixvim.enable = false;
|
||||
nixvim.transparentBackground = {
|
||||
main = false;
|
||||
signColumn = false;
|
||||
|
||||
@@ -49,6 +49,16 @@ in {
|
||||
wf-recorder
|
||||
toilet
|
||||
vkbasalt
|
||||
firefox
|
||||
dust
|
||||
porsmo
|
||||
rustup
|
||||
w3m
|
||||
neovide
|
||||
python3
|
||||
ghostty
|
||||
fd
|
||||
delta
|
||||
] ++ scripts;
|
||||
};
|
||||
}
|
||||
|
||||
@@ -4,7 +4,9 @@
|
||||
config = lib.mkIf config.movOpts.envConfig.zshConfig.shellAliases.enable {
|
||||
programs.zsh = {
|
||||
shellAliases = {
|
||||
grep = "grep --color=auto";
|
||||
grep = "rg";
|
||||
find = "fd";
|
||||
cat = "bat";
|
||||
yazi = "y";
|
||||
mv = "mv -v";
|
||||
cp = "cp -vr";
|
||||
@@ -28,6 +30,7 @@
|
||||
gpush = "gitpush_sfx";
|
||||
gpull = "gitpull_sfx";
|
||||
greb = "gitrebase_sfx";
|
||||
rsh = "$HOME/Coding/projects/rust/rsh/target/debug/rsh";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
@@ -37,7 +37,12 @@ in
|
||||
${shellsound} ${sndpath}/nvim.wav
|
||||
command nvim "$@"
|
||||
}
|
||||
neovide() {
|
||||
${shellsound} ${sndpath}/nvim.wav
|
||||
command neovide "$@"
|
||||
}
|
||||
alias vi="nvim"
|
||||
alias vide="neovide"
|
||||
kitty_theme() {
|
||||
if [ $TERM = "xterm-kitty" ]; then
|
||||
if [ -n "$SSH_CONNECTION" ]; then
|
||||
@@ -135,6 +140,10 @@ in
|
||||
touch $HOME/.zsh_history
|
||||
chmod 600 $HOME/.zsh_history
|
||||
fi
|
||||
if [ "$TERM" = "linux" ]; then
|
||||
echo -en "\e]P0101010"
|
||||
setfont ter-v32b
|
||||
fi
|
||||
setopt APPEND_HISTORY # Append history to the history file (don't overwrite)
|
||||
setopt INC_APPEND_HISTORY # Append to the history file incrementally
|
||||
setopt SHARE_HISTORY # Share history between all zsh sessions
|
||||
|
||||
Reference in New Issue
Block a user