feat: Update to latest nixvim and nixpkgs

This commit is contained in:
uttarayan21
2024-09-17 19:21:46 +05:30
parent 8e1bc492a4
commit 33c7d05ba7
6 changed files with 302 additions and 285 deletions

View File

@@ -27,9 +27,9 @@ lib.attrsets.optionalAttrs device.hasGui {
[
_1password
neovide
(mpv-unwrapped.wrapper {mpv = mpv-unwrapped.override {sixelSupport = true;};})
]
++ lib.optionals device.isLinux [
++ lib.optionals pkgs.stdenv.isLinux [
(mpv-unwrapped.wrapper {mpv = mpv-unwrapped.override {sixelSupport = true;};})
slack
via
webcord-vencord
@@ -58,5 +58,7 @@ lib.attrsets.optionalAttrs device.hasGui {
webcord-vencord
spotify
wl-clipboard
]
++ lib.optionals pkgs.stdenv.isDarwin [
];
}

View File

@@ -206,12 +206,15 @@ in {
# t = "zellij a -c --index 0";
t = "tmux";
};
shellAliases = {
g = "git";
aichat = "op plugin run -- aichat";
kmpv = "mpv --vo-kitty-use-shm=yes --vo=kitty --really-quiet";
smpv = "mpv --vo-sixel-buffered=yes --vo=sixel --profile=sw-fast";
};
shellAliases =
{
g = "git";
aichat = "op plugin run -- aichat";
}
// lib.optionalAttrs pkgs.stdenv.isLinux {
kmpv = "mpv --vo-kitty-use-shm=yes --vo=kitty --really-quiet";
smpv = "mpv --vo-sixel-buffered=yes --vo=sixel --profile=sw-fast";
};
shellInit = ''
set fish_greeting
yes | fish_config theme save "Catppuccin Mocha"