Reconfig nvim install + add lazy-nvim

This commit is contained in:
BuyMyMojo 2025-03-31 05:09:31 +11:00
parent 53c416ad53
commit 2b480072c8
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
2 changed files with 18 additions and 4 deletions

View file

@ -195,11 +195,11 @@
"locked": { "locked": {
"lastModified": 1, "lastModified": 1,
"narHash": "sha256-F++9IlKzjo5nlNYC+fpx4GfbJiEUqLarfQPBBT5uz3A=", "narHash": "sha256-F++9IlKzjo5nlNYC+fpx4GfbJiEUqLarfQPBBT5uz3A=",
"path": "/nix/store/xwbzdw1803z7ca584098i7frbafsafhk-source/programs/shadps4", "path": "/nix/store/j88qqgp5b1qwpd8120jh24f48q7c96cw-source/programs/shadps4",
"type": "path" "type": "path"
}, },
"original": { "original": {
"path": "/nix/store/xwbzdw1803z7ca584098i7frbafsafhk-source/programs/shadps4", "path": "/nix/store/j88qqgp5b1qwpd8120jh24f48q7c96cw-source/programs/shadps4",
"type": "path" "type": "path"
} }
}, },

View file

@ -35,7 +35,10 @@
# The home.packages option allows you to install Nix packages into your # The home.packages option allows you to install Nix packages into your
# environment. # environment.
home.packages = with unstable; with inputs; [ home.packages =
with unstable;
with inputs;
[
pkgs.nextcloud-client pkgs.nextcloud-client
pkgs.yubioath-flutter pkgs.yubioath-flutter
pkgs.xpipe pkgs.xpipe
@ -110,7 +113,7 @@
pkgs.jetbrains.webstorm pkgs.jetbrains.webstorm
pkgs.jetbrains.rider pkgs.jetbrains.rider
pkgs.jetbrains.idea-community pkgs.jetbrains.idea-community
unstable.neovim # unstable.neovim
# === Dev tooling === # === Dev tooling ===
# === Media === # === Media ===
@ -147,6 +150,17 @@
# '') # '')
]; ];
programs.neovim = {
# package = unstable.neovim;
enable = true;
viAlias = true;
vimAlias = true;
plugins = with pkgs.vimPlugins; [
lazy-nvim
];
};
programs.mangohud = { programs.mangohud = {
enable = true; enable = true;
enableSessionWide = true; enableSessionWide = true;