Adds needed packages to deck

This commit is contained in:
Dennis Schoepf 2025-05-06 23:17:38 +02:00
parent 9b1f4818e8
commit 91913518e2
2 changed files with 13 additions and 1 deletions

View file

@ -31,6 +31,9 @@
fzf fzf
just just
lazygit lazygit
fortune
zoxide
atuin
]; ];
xdg.enable = true; xdg.enable = true;
@ -39,7 +42,7 @@
./modules/git ./modules/git
./modules/fish ./modules/fish
./modules/atuin ./modules/atuin
./modules/nvim ./modules/nvim/deck.nix
./modules/lazygit ./modules/lazygit
]; ];

View file

@ -0,0 +1,9 @@
{ config, ... }:
{
xdg.configFile."nvim" = {
# mkOutOfStoreSymlink needs an absolute path, otherwise it does not work: https://github.com/nix-community/home-manager/issues/676#issuecomment-1595795685
# TODO: At least make the location of the config folder dynamic so that it works on other machines
source = config.lib.file.mkOutOfStoreSymlink /home/deck/dev/nix-config/home/modules/nvim/config;
};
}