mirror of
https://github.com/Cian-H/My_NixOS_Config.git
synced 2025-12-22 15:01:57 +00:00
30 lines
498 B
Nix
30 lines
498 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
lib,
|
|
config,
|
|
pkgs,
|
|
unstablePkgs,
|
|
...
|
|
}: {
|
|
home.packages =
|
|
(with pkgs; [
|
|
(python3.withPackages (
|
|
python-pkgs: [
|
|
python-pkgs.pip
|
|
python-pkgs.pkginfo
|
|
python-pkgs.python-lsp-server
|
|
python-pkgs.setuptools
|
|
]
|
|
))
|
|
lua54Packages.lua
|
|
luajitPackages.luarocks
|
|
nodejs-slim
|
|
stylua
|
|
])
|
|
++ (with unstablePkgs; [
|
|
podman-tui
|
|
vimPlugins.mason-lspconfig-nvim
|
|
]);
|
|
}
|