add lua and symlink to dotfiles

This commit is contained in:
Benjamin Palko 2024-07-21 13:51:52 -04:00
parent a257d309d9
commit 1a01a958d5

View file

@ -1,7 +1,13 @@
{ pkgs, ... }:
{ config, pkgs, ... }:
{
home.packages = with pkgs; [
python3
lua
(python3.withPackages (
p: with p; [
pygobject3
gst-python
]
))
nodejs
bun
rustc
@ -15,7 +21,7 @@
];
xdg.configFile.nvim = {
source = ../nvim;
source = config.lib.file.mkOutOfStoreSymlink ../nvim;
recursive = true;
};