add lua and symlink to dotfiles
This commit is contained in:
parent
a257d309d9
commit
1a01a958d5
1 changed files with 9 additions and 3 deletions
|
|
@ -1,7 +1,13 @@
|
||||||
{ pkgs, ... }:
|
{ config, pkgs, ... }:
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
python3
|
lua
|
||||||
|
(python3.withPackages (
|
||||||
|
p: with p; [
|
||||||
|
pygobject3
|
||||||
|
gst-python
|
||||||
|
]
|
||||||
|
))
|
||||||
nodejs
|
nodejs
|
||||||
bun
|
bun
|
||||||
rustc
|
rustc
|
||||||
|
|
@ -15,7 +21,7 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
xdg.configFile.nvim = {
|
xdg.configFile.nvim = {
|
||||||
source = ../nvim;
|
source = config.lib.file.mkOutOfStoreSymlink ../nvim;
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue