Updated flake.lock and some nvim packages

This commit is contained in:
Tomas Rivera
2026-04-02 09:41:21 +02:00
parent 4dfb26b487
commit f5bfae1005
4 changed files with 20 additions and 12 deletions
Generated
+9 -9
View File
@@ -7,11 +7,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1771744638, "lastModified": 1775077333,
"narHash": "sha256-EDLi+YAsEEAmMeZe1v6GccuGRbCkpSZp/+A6g+pivR8=", "narHash": "sha256-OXcxobt7lBkh1B8AjwreU+24myhtKpqeLfAeIyNLFY8=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "cb6c151f5c9db4df0b69d06894dc8484de1f16a0", "rev": "49ca96b2714c5931e17401eff87f3edd42d2b0f2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -57,11 +57,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1772736753, "lastModified": 1775064974,
"narHash": "sha256-au/m3+EuBLoSzWUCb64a/MZq6QUtOV8oC0D9tY2scPQ=", "narHash": "sha256-fp7+8MzxHrIixIIVvyORI2XpqpQnxf8NodmEHy8rczg=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "917fec990948658ef1ccd07cef2a1ef060786846", "rev": "6ebfbc38bdc6b22822a6f991f2d922306f33cfbc",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -73,11 +73,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1771903837, "lastModified": 1775002709,
"narHash": "sha256-sdaqdnsQCv3iifzxwB22tUwN/fSHoN7j2myFW5EIkGk=", "narHash": "sha256-d3Yx83vSrN+2z/loBh4mJpyRqr9aAJqlke4TkpFmRJA=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "e764fc9a405871f1f6ca3d1394fb422e0a0c3951", "rev": "bcd464ccd2a1a7cd09aa2f8d4ffba83b761b1d0e",
"type": "github" "type": "github"
}, },
"original": { "original": {
+3 -1
View File
@@ -204,7 +204,7 @@
grim # Grab images from a Wayland compositor Used for quickshell screenshot tool grim # Grab images from a Wayland compositor Used for quickshell screenshot tool
xdg-utils xdg-utils
mailcap mailcap
pkgs-unstable.vimPluginsUpdater # used for building plugins
hyprcursor hyprcursor
vial # Open-source GUI and QMK fork for configuring your keyboard in real time vial # Open-source GUI and QMK fork for configuring your keyboard in real time
mplayer # Movie player that supports many video formats mplayer # Movie player that supports many video formats
@@ -222,12 +222,14 @@
networkx networkx
scipy scipy
])) ]))
iamb # matrix client
direnv direnv
vivify # for nvimnotes vivify # for nvimnotes
# utils for dev # utils for dev
pkg-config pkg-config
gdb gdb
raylib glfw # raylib and some dependecies raylib glfw # raylib and some dependecies
rembg # background remover
#some nix tools #some nix tools
manix manix
deadnix deadnix
+5 -2
View File
@@ -31,8 +31,11 @@
color8 #578F73 color8 #578F73
# red # red
color1 #FFF0CC #color1 #FFF0CC
color9 #F0DBAA #color9 #F0DBAA
# we need actual red colors
color1 #CC241D
color9 #9D0006
# green # green
color2 #FFEECC color2 #FFEECC
+3
View File
@@ -1,13 +1,16 @@
{ {
config, config,
pkgs, pkgs,
pkgs-unstable,
... ...
}: { }: {
programs.neovim = { programs.neovim = {
enable = true; enable = true;
vimAlias = true; vimAlias = true;
viAlias = true; viAlias = true;
package = pkgs-unstable.neovim-unwrapped; # for some reason you must use the unwrapped version
plugins = [ plugins = [
pkgs-unstable.vimPlugins.vivify-vim
pkgs.vimPlugins.vimtex pkgs.vimPlugins.vimtex
pkgs.vimPlugins.zoxide-vim pkgs.vimPlugins.zoxide-vim
pkgs.vimPlugins.gruvbox pkgs.vimPlugins.gruvbox