reinit git

This commit is contained in:
2026-07-04 04:46:11 +02:00
commit 524ee6e1ce
61 changed files with 5183 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
imports = [
./nix-lang.nix
./python.nix
./lua.nix
./vscode.nix
];
}
+5
View File
@@ -0,0 +1,5 @@
{ config, pkgs, ... }:
{
environment.systemPackages = with pkgs; [ luaPackages.lua-lsp ];
}
+8
View File
@@ -0,0 +1,8 @@
{ config, lib, pkgs, ... }:
{
environment.systemPackages = with pkgs; [
nixd
nil
];
}
+4
View File
@@ -0,0 +1,4 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [ basedpyright ];
}
+13
View File
@@ -0,0 +1,13 @@
{ pkgs, ... }:
{
programs.vscode = {
enable = true;
package = pkgs.vscodium;
extensions = with pkgs.vscode-extensions; [
jnoortheen.nix-ide
kamadorueda.alejandra
jeff-hykin.better-nix-syntax
leonardssh.vscord
];
};
}