Adds needed packages to deck
This commit is contained in:
parent
9b1f4818e8
commit
91913518e2
2 changed files with 13 additions and 1 deletions
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
||||||
9
home/modules/nvim/deck.nix
Normal file
9
home/modules/nvim/deck.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue