Added: Bunch of Programs

This commit is contained in:
2025-03-27 14:59:12 +01:00
parent 8415352b65
commit 53065b1bd1
246 changed files with 318 additions and 94 deletions

View File

@@ -0,0 +1,9 @@
{
imports = [
./git.nix
./neovim.nix
./fstl.nix
./openscad.nix
./sqllite_browser.nix
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install fstl
home.packages = with pkgs; [
fstl
];
}

12
home/programs/dev/git.nix Normal file
View File

@@ -0,0 +1,12 @@
{
pkgs,
...
}: {
home.packages = [pkgs.gh];
programs.git = {
enable = true;
# ... Other options ...
};
}

View File

@@ -0,0 +1,12 @@
{ pkgs, ... }: {
programs.neovim = {
enable = true;
viAlias = true;
vimAlias = true;
defaultEditor = true;
plugins = with pkgs.vimPlugins; [
nvim-tree-lua
nvim-treesitter.withAllGrammars
];
};
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install OpenSCAD
home.packages = with pkgs; [
openscad
];
}

View File

@@ -0,0 +1,8 @@
{ pkgs, ... }:
{
# Install sqlitebrowser (DB Browser for SQLite)
home.packages = with pkgs; [
sqlitebrowser
];
}