mirror of
https://github.com/dwinkler1/np.git
synced 2026-05-22 21:23:31 -04:00
Compare commits
4 commits
main
...
copilot/ad
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3c52f6b820 | ||
|
|
5ac0c775ef | ||
|
|
0e20fe6229 | ||
|
|
503b6534ae |
10 changed files with 741 additions and 278 deletions
6
.github/workflows/check.yml
vendored
6
.github/workflows/check.yml
vendored
|
|
@ -32,7 +32,7 @@ jobs:
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: cachix/cachix-action@v17
|
- uses: cachix/cachix-action@v16
|
||||||
with:
|
with:
|
||||||
name: rde
|
name: rde
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
|
@ -125,7 +125,7 @@ jobs:
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: cachix/cachix-action@v17
|
- uses: cachix/cachix-action@v16
|
||||||
with:
|
with:
|
||||||
name: rde
|
name: rde
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
|
@ -181,7 +181,7 @@ jobs:
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: cachix/cachix-action@v17
|
- uses: cachix/cachix-action@v16
|
||||||
with:
|
with:
|
||||||
name: rde
|
name: rde
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
|
|
||||||
266
.github/workflows/check_ed.yml
vendored
266
.github/workflows/check_ed.yml
vendored
|
|
@ -1,26 +1,280 @@
|
||||||
name: "Test ed template MacOS"
|
name: "Test ED template"
|
||||||
on:
|
on:
|
||||||
workflow_dispatch: # allows manual triggering
|
workflow_dispatch: # allows manual triggering
|
||||||
push:
|
push:
|
||||||
branches:
|
paths:
|
||||||
- 'update_rde'
|
- 'templates/ed/flake.lock'
|
||||||
|
- 'templates/ed/**/*.nix'
|
||||||
|
- '.github/workflows/check_ed.yml'
|
||||||
|
pull_request:
|
||||||
|
paths:
|
||||||
|
- 'templates/ed/flake.lock'
|
||||||
|
- 'templates/ed/**/*.nix'
|
||||||
|
- '.github/workflows/check_ed.yml'
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}
|
group: ${{ github.workflow }}-${{ github.ref }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
permissions:
|
||||||
|
contents: read
|
||||||
jobs:
|
jobs:
|
||||||
tests:
|
tests:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os: [macos-latest, ubuntu-latest]
|
os: [ubuntu-latest]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v6
|
- uses: actions/checkout@v6
|
||||||
|
- uses: wimpysworld/nothing-but-nix@main
|
||||||
|
with:
|
||||||
|
hatchet-protocol: 'carve'
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: cachix/cachix-action@v17
|
- uses: cachix/cachix-action@v16
|
||||||
with:
|
with:
|
||||||
name: rde
|
name: rde
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
extraPullNames: rstats-on-nix, nix-community
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
- run: nix build ./templates/ed
|
|
||||||
|
# Build and basic checks
|
||||||
|
- name: Build template
|
||||||
|
run: nix build ./templates/ed
|
||||||
|
- name: Run flake check
|
||||||
|
run: nix flake check ./templates/ed
|
||||||
|
|
||||||
|
# Test development shell functionality
|
||||||
|
- name: Test dev shell enters successfully
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "echo 'Dev shell works'"
|
||||||
|
|
||||||
|
# Test Neovim functionality (custom binary name: vv)
|
||||||
|
- name: Test vv command is available
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "which vv"
|
||||||
|
|
||||||
|
- name: Test vv launches in headless mode
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "vv --headless --version"
|
||||||
|
|
||||||
|
# Test utility commands
|
||||||
|
- name: Test updateR command is available
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "which updateR"
|
||||||
|
|
||||||
|
# Test extra packages
|
||||||
|
- name: Test cowsay is available
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "which cowsay"
|
||||||
|
|
||||||
|
- name: Test cowsay works
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "cowsay 'ED template test'"
|
||||||
|
|
||||||
|
# Test that package is built correctly
|
||||||
|
- name: Test default package can be run
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix run . -- --headless --version
|
||||||
|
|
||||||
|
# Test Neovim configuration
|
||||||
|
- name: Test mini-notify plugin loads
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
# Check that the welcome notification config is present
|
||||||
|
nix develop --command bash -c "vv --headless -c 'lua print(vim.inspect(require(\"mini.notify\")))' -c 'quit' 2>&1 | grep -q 'table'"
|
||||||
|
|
||||||
|
test-with-python:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: wimpysworld/nothing-but-nix@main
|
||||||
|
with:
|
||||||
|
hatchet-protocol: 'carve'
|
||||||
|
- uses: cachix/install-nix-action@v31
|
||||||
|
with:
|
||||||
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- uses: cachix/cachix-action@v16
|
||||||
|
with:
|
||||||
|
name: rde
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
|
|
||||||
|
# Create a temporary directory with Python enabled
|
||||||
|
- name: Setup test directory with Python enabled
|
||||||
|
run: |
|
||||||
|
TEST_DIR=$(mktemp -d)
|
||||||
|
cp -r templates/ed/. "$TEST_DIR/"
|
||||||
|
cd "$TEST_DIR"
|
||||||
|
# Enable Python in the config
|
||||||
|
sed -i 's/python[[:space:]]*=[[:space:]]*false;/python = true;/' flake.nix
|
||||||
|
# Verify the change was successful
|
||||||
|
grep -q "python[[:space:]]*=[[:space:]]*true;" flake.nix || {
|
||||||
|
echo "Error: Failed to enable Python in flake.nix"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
echo "TEST_PYTHON_DIR=$TEST_DIR" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build with Python enabled
|
||||||
|
run: |
|
||||||
|
cd "$TEST_PYTHON_DIR"
|
||||||
|
nix build
|
||||||
|
|
||||||
|
- name: Test Python packages are available
|
||||||
|
run: |
|
||||||
|
cd "$TEST_PYTHON_DIR"
|
||||||
|
nix develop --command bash -c "python3 -c 'import duckdb; import polars; print(\"Python packages loaded\")'"
|
||||||
|
|
||||||
|
- name: Test Python can execute code
|
||||||
|
run: |
|
||||||
|
cd "$TEST_PYTHON_DIR"
|
||||||
|
nix develop --command bash -c "python3 -c 'print(1+1)'"
|
||||||
|
|
||||||
|
test-with-r:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: wimpysworld/nothing-but-nix@main
|
||||||
|
with:
|
||||||
|
hatchet-protocol: 'carve'
|
||||||
|
- uses: cachix/install-nix-action@v31
|
||||||
|
with:
|
||||||
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- uses: cachix/cachix-action@v16
|
||||||
|
with:
|
||||||
|
name: rde
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
|
|
||||||
|
# Create a temporary directory with R enabled
|
||||||
|
- name: Setup test directory with R enabled
|
||||||
|
run: |
|
||||||
|
TEST_DIR=$(mktemp -d)
|
||||||
|
cp -r templates/ed/. "$TEST_DIR/"
|
||||||
|
cd "$TEST_DIR"
|
||||||
|
# Enable R in the config
|
||||||
|
sed -i 's/r[[:space:]]*=[[:space:]]*false;/r = true;/' flake.nix
|
||||||
|
# Verify the change was successful
|
||||||
|
grep -q "r[[:space:]]*=[[:space:]]*true;" flake.nix || {
|
||||||
|
echo "Error: Failed to enable R in flake.nix"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
echo "TEST_R_DIR=$TEST_DIR" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build with R enabled
|
||||||
|
run: |
|
||||||
|
cd "$TEST_R_DIR"
|
||||||
|
nix build
|
||||||
|
|
||||||
|
- name: Test R launches
|
||||||
|
run: |
|
||||||
|
cd "$TEST_R_DIR"
|
||||||
|
nix develop --command bash -c "R --version"
|
||||||
|
|
||||||
|
- name: Test R packages are available
|
||||||
|
run: |
|
||||||
|
cd "$TEST_R_DIR"
|
||||||
|
nix develop --command bash -c "R -e 'library(fixest); print(\"R package fixest loaded\")'"
|
||||||
|
|
||||||
|
- name: Test R can execute code
|
||||||
|
run: |
|
||||||
|
cd "$TEST_R_DIR"
|
||||||
|
nix develop --command bash -c "R -e 'print(1+1)'"
|
||||||
|
|
||||||
|
test-with-julia:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: wimpysworld/nothing-but-nix@main
|
||||||
|
with:
|
||||||
|
hatchet-protocol: 'carve'
|
||||||
|
- uses: cachix/install-nix-action@v31
|
||||||
|
with:
|
||||||
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- uses: cachix/cachix-action@v16
|
||||||
|
with:
|
||||||
|
name: rde
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
|
|
||||||
|
# Create a temporary directory with Julia enabled
|
||||||
|
- name: Setup test directory with Julia enabled
|
||||||
|
run: |
|
||||||
|
TEST_DIR=$(mktemp -d)
|
||||||
|
cp -r templates/ed/. "$TEST_DIR/"
|
||||||
|
cd "$TEST_DIR"
|
||||||
|
# Enable Julia in the config
|
||||||
|
sed -i 's/julia[[:space:]]*=[[:space:]]*false;/julia = true;/' flake.nix
|
||||||
|
# Verify the change was successful
|
||||||
|
grep -q "julia[[:space:]]*=[[:space:]]*true;" flake.nix || {
|
||||||
|
echo "Error: Failed to enable Julia in flake.nix"
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
echo "TEST_JULIA_DIR=$TEST_DIR" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build with Julia enabled
|
||||||
|
run: |
|
||||||
|
cd "$TEST_JULIA_DIR"
|
||||||
|
nix build
|
||||||
|
|
||||||
|
- name: Test Julia launches
|
||||||
|
run: |
|
||||||
|
cd "$TEST_JULIA_DIR"
|
||||||
|
nix develop --command bash -c "julia --version"
|
||||||
|
|
||||||
|
- name: Test Julia can execute code
|
||||||
|
run: |
|
||||||
|
cd "$TEST_JULIA_DIR"
|
||||||
|
nix develop --command bash -c "julia -e 'println(1+1)'"
|
||||||
|
|
||||||
|
test-with-multiple-languages:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v6
|
||||||
|
- uses: wimpysworld/nothing-but-nix@main
|
||||||
|
with:
|
||||||
|
hatchet-protocol: 'carve'
|
||||||
|
- uses: cachix/install-nix-action@v31
|
||||||
|
with:
|
||||||
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
- uses: cachix/cachix-action@v16
|
||||||
|
with:
|
||||||
|
name: rde
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
|
|
||||||
|
# Create a temporary directory with multiple languages enabled
|
||||||
|
- name: Setup test directory with all languages enabled
|
||||||
|
run: |
|
||||||
|
TEST_DIR=$(mktemp -d)
|
||||||
|
cp -r templates/ed/. "$TEST_DIR/"
|
||||||
|
cd "$TEST_DIR"
|
||||||
|
# Enable all languages in the config
|
||||||
|
sed -i 's/python[[:space:]]*=[[:space:]]*false;/python = true;/' flake.nix
|
||||||
|
sed -i 's/r[[:space:]]*=[[:space:]]*false;/r = true;/' flake.nix
|
||||||
|
sed -i 's/julia[[:space:]]*=[[:space:]]*false;/julia = true;/' flake.nix
|
||||||
|
# Verify the changes were successful
|
||||||
|
grep -q "python[[:space:]]*=[[:space:]]*true;" flake.nix || exit 1
|
||||||
|
grep -q "r[[:space:]]*=[[:space:]]*true;" flake.nix || exit 1
|
||||||
|
grep -q "julia[[:space:]]*=[[:space:]]*true;" flake.nix || exit 1
|
||||||
|
echo "TEST_MULTI_DIR=$TEST_DIR" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Build with all languages enabled
|
||||||
|
run: |
|
||||||
|
cd "$TEST_MULTI_DIR"
|
||||||
|
nix build
|
||||||
|
|
||||||
|
- name: Test all languages work together
|
||||||
|
run: |
|
||||||
|
cd "$TEST_MULTI_DIR"
|
||||||
|
nix develop --command bash -c "python3 --version && R --version && julia --version"
|
||||||
|
|
||||||
|
- name: Test all language packages are available
|
||||||
|
run: |
|
||||||
|
cd "$TEST_MULTI_DIR"
|
||||||
|
nix develop --command bash -c "python3 -c 'import duckdb' && R -e 'library(fixest)' && julia -e 'using StatsBase'"
|
||||||
|
|
|
||||||
24
.github/workflows/check_macos.yml
vendored
24
.github/workflows/check_macos.yml
vendored
|
|
@ -18,10 +18,28 @@ jobs:
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: cachix/cachix-action@v17
|
- uses: cachix/cachix-action@v16
|
||||||
with:
|
with:
|
||||||
name: rde
|
name: rde
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
extraPullNames: rstats-on-nix, nix-community
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
- run: nix build ./templates/rde
|
|
||||||
- run: nix build ./templates/ed
|
# Test RDE template
|
||||||
|
- name: Build RDE template
|
||||||
|
run: nix build ./templates/rde
|
||||||
|
- name: Check RDE flake
|
||||||
|
run: nix flake check ./templates/rde
|
||||||
|
- name: Test RDE dev shell
|
||||||
|
run: |
|
||||||
|
cd templates/rde
|
||||||
|
nix develop --command bash -c "p --headless --version"
|
||||||
|
|
||||||
|
# Test ED template
|
||||||
|
- name: Build ED template
|
||||||
|
run: nix build ./templates/ed
|
||||||
|
- name: Check ED flake
|
||||||
|
run: nix flake check ./templates/ed
|
||||||
|
- name: Test ED dev shell
|
||||||
|
run: |
|
||||||
|
cd templates/ed
|
||||||
|
nix develop --command bash -c "vv --headless --version"
|
||||||
|
|
|
||||||
6
.github/workflows/update.yml
vendored
6
.github/workflows/update.yml
vendored
|
|
@ -17,12 +17,14 @@ jobs:
|
||||||
- uses: cachix/install-nix-action@v31
|
- uses: cachix/install-nix-action@v31
|
||||||
with:
|
with:
|
||||||
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
github_access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: cachix/cachix-action@v17
|
- uses: cachix/cachix-action@v16
|
||||||
with:
|
with:
|
||||||
name: rde
|
name: rde
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
extraPullNames: rstats-on-nix, nix-community
|
extraPullNames: rstats-on-nix, nix-community
|
||||||
- name: Update ed flake.lock
|
- run: cd templates/rde/ && nix develop -c p-updateDeps
|
||||||
|
- run: cd templates/ed/ && nix develop -c updateR
|
||||||
|
- name: Update n flake.lock
|
||||||
uses: DeterminateSystems/update-flake-lock@v28
|
uses: DeterminateSystems/update-flake-lock@v28
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||||
|
|
|
||||||
80
README.md
80
README.md
|
|
@ -4,9 +4,32 @@ A collection of Nix flake templates for reproducible development environments.
|
||||||
|
|
||||||
## Templates
|
## Templates
|
||||||
|
|
||||||
|
### ED (Editor)
|
||||||
|
|
||||||
|
A simple Neovim-based development environment with optional language support.
|
||||||
|
|
||||||
|
**Quick start:**
|
||||||
|
```bash
|
||||||
|
nix flake init -t github:dwinkler1/np#ed
|
||||||
|
nix develop
|
||||||
|
vv # Launch Neovim (custom binary name)
|
||||||
|
```
|
||||||
|
|
||||||
|
**Features:**
|
||||||
|
- ✨ Lightweight Neovim configuration
|
||||||
|
- 🔧 Configurable language support (Python, R, Julia, Nix)
|
||||||
|
- 📦 Reproducible with Nix
|
||||||
|
- 🎨 Custom theming (Kanagawa by default)
|
||||||
|
- 🔔 Mini-notify plugin for notifications
|
||||||
|
|
||||||
|
**Default configuration:**
|
||||||
|
- Nix support enabled
|
||||||
|
- Custom binary: `vv`
|
||||||
|
- Includes: cowsay, updateR utility
|
||||||
|
|
||||||
### RDE (Research Development Environment)
|
### RDE (Research Development Environment)
|
||||||
|
|
||||||
The default template for data science and research projects with support for R, Python, and Julia.
|
A comprehensive template for data science and research projects with support for R, Python, and Julia.
|
||||||
|
|
||||||
**Quick start:**
|
**Quick start:**
|
||||||
```bash
|
```bash
|
||||||
|
|
@ -34,12 +57,63 @@ All templates are automatically tested to ensure functionality:
|
||||||
|
|
||||||
### CI Workflows
|
### CI Workflows
|
||||||
|
|
||||||
- `.github/workflows/check.yml` - Comprehensive functionality tests (Ubuntu)
|
**RDE Template:**
|
||||||
- `.github/workflows/check_macos.yml` - macOS compatibility tests
|
- `.github/workflows/check.yml` - Comprehensive functionality tests for RDE (Ubuntu)
|
||||||
|
- Basic build and flake checks
|
||||||
|
- Dev shell functionality
|
||||||
|
- R command availability and functionality
|
||||||
|
- Neovim integration
|
||||||
|
- Utility commands (p-initProject, p-updateDeps)
|
||||||
|
- Separate jobs for Python and Julia configurations
|
||||||
|
|
||||||
|
**ED Template:**
|
||||||
|
- `.github/workflows/check_ed.yml` - Comprehensive functionality tests for ED (Ubuntu)
|
||||||
|
- Basic build and flake checks
|
||||||
|
- Dev shell functionality
|
||||||
|
- Neovim (vv) command tests
|
||||||
|
- updateR utility tests
|
||||||
|
- Extra packages (cowsay) verification
|
||||||
|
- Separate jobs for Python, R, Julia, and multi-language configurations
|
||||||
|
|
||||||
|
**Cross-platform:**
|
||||||
|
- `.github/workflows/check_macos.yml` - macOS compatibility tests for both templates
|
||||||
- `.github/workflows/update.yml` - Automated dependency updates
|
- `.github/workflows/update.yml` - Automated dependency updates
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
### ED Template
|
||||||
|
|
||||||
|
1. **Initialize a new project:**
|
||||||
|
```bash
|
||||||
|
nix flake init -t github:dwinkler1/np#ed
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Enter development environment:**
|
||||||
|
```bash
|
||||||
|
nix develop
|
||||||
|
# or with direnv
|
||||||
|
echo "use flake" > .envrc && direnv allow
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Start editing:**
|
||||||
|
```bash
|
||||||
|
vv # Launch Neovim
|
||||||
|
updateR # Update R packages (when R is enabled)
|
||||||
|
cowsay "Hello!" # Fun utility included
|
||||||
|
```
|
||||||
|
|
||||||
|
4. **Enable languages:**
|
||||||
|
Edit `flake.nix` and change `false` to `true` in the `cats` section:
|
||||||
|
```nix
|
||||||
|
cats = {
|
||||||
|
python = true; # Enable Python support
|
||||||
|
r = true; # Enable R support
|
||||||
|
julia = true; # Enable Julia support
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
### RDE Template
|
||||||
|
|
||||||
1. **Initialize a new project:**
|
1. **Initialize a new project:**
|
||||||
```bash
|
```bash
|
||||||
nix flake init -t github:dwinkler1/np#rde
|
nix flake init -t github:dwinkler1/np#rde
|
||||||
|
|
|
||||||
|
|
@ -1,73 +1,284 @@
|
||||||
# Project Editor
|
# ED Template - Simple Editor Environment
|
||||||
|
|
||||||
A per-project Neovim wrapper built with [nix-wrapper-modules](https://birdeehub.github.io/nix-wrapper-modules/) and [nvimConfig](https://github.com/dwinkler1/nvimConfig).
|
A lightweight, customizable Neovim-based development environment with optional language support for Python, R, Julia, and Nix.
|
||||||
|
|
||||||
## Setup
|
## Features
|
||||||
|
|
||||||
The flake provides two entry points:
|
- ✨ **Lightweight**: Minimal configuration, fast startup
|
||||||
|
- 🔧 **Configurable**: Enable only the languages you need
|
||||||
|
- 📦 **Reproducible**: Nix-based environment management
|
||||||
|
- 🎨 **Themed**: Beautiful Kanagawa colorscheme (customizable)
|
||||||
|
- 🔔 **Notifications**: Mini-notify plugin for user feedback
|
||||||
|
|
||||||
| Command | What you get |
|
## Quick Start
|
||||||
|---|---|
|
|
||||||
| `direnv allow` / `nix develop` | **(Recommended)** A shell with `nv` and all enabled language toolchains (R, Python, Julia, Quarto) on `PATH`. |
|
|
||||||
| `nix run` | Launches only the `nv` editor. Language toolchains (R, Python, etc.) are **not** on `PATH`. |
|
|
||||||
|
|
||||||
### With direnv (recommended)
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
direnv allow # enter the devShell automatically
|
# Initialize a new project with the ED template
|
||||||
nv # launch the pre-configured Neovim
|
nix flake init -t github:dwinkler1/np#ed
|
||||||
R # R REPL is available (if enabled in flake.nix)
|
|
||||||
|
# Enter the development environment
|
||||||
|
nix develop
|
||||||
|
|
||||||
|
# Launch Neovim
|
||||||
|
vv
|
||||||
```
|
```
|
||||||
|
|
||||||
### Without direnv
|
|
||||||
|
|
||||||
```bash
|
|
||||||
nix develop # enter the devShell manually
|
|
||||||
nv # launch Neovim
|
|
||||||
R # R REPL is available (if enabled in flake.nix)
|
|
||||||
```
|
|
||||||
|
|
||||||
> **Why `nix run` only gives the editor:** The flake's `packages.default` is the wrapped Neovim binary. Language toolchains (R, radian, quarto, etc.) live in `devShells.default`. Use `nix develop` (or `direnv allow`) to get the full environment.
|
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
The `flake.nix` is the single source of truth. Key knobs:
|
The ED template uses a centralized configuration structure at the top of `flake.nix`:
|
||||||
|
|
||||||
| Option | What it controls |
|
```nix
|
||||||
|---|---|
|
cats = {
|
||||||
| `cats` | Toggle language support (nix, r, python, julia, etc.) |
|
clickhouse = false;
|
||||||
| `settings.lang_packages.<lang>` | Language-specific packages installed in the wrapper |
|
gitPlugins = false;
|
||||||
| `settings.colorscheme` | Neovim colorscheme |
|
julia = false;
|
||||||
| `settings.background` | `"dark"` or `"light"` |
|
lua = false;
|
||||||
| `settings.wrapRc` | When `true`, init.lua is embedded (rebuild to change); when `false`, init.lua is external (reload without rebuild) |
|
markdown = false;
|
||||||
| `binName` | The wrapper binary name (`nv` by default) |
|
nix = true; # Enabled by default
|
||||||
| `env` | Environment variables set in the wrapper |
|
optional = false;
|
||||||
| `extraPackages` | Extra system packages available in the wrapper's PATH |
|
python = false;
|
||||||
| `specs.extraLua` | Inject lazy.nvim plugin specs |
|
r = false;
|
||||||
|
};
|
||||||
### Adding packages without editing flake.nix
|
|
||||||
|
|
||||||
Create any of these optional files in the project root to add dependencies without modifying `flake.nix`:
|
|
||||||
|
|
||||||
- **`python-packages.nix`** — receives `python3Packages`, return a list of packages:
|
|
||||||
```nix
|
|
||||||
p: with p; [ numpy scipy ]
|
|
||||||
```
|
|
||||||
|
|
||||||
- **`r-packages.nix`** — receives `rpkgs` (includes `rPackages`), return a list:
|
|
||||||
```nix
|
|
||||||
p: with p.rPackages; [ ggplot2 data.table ]
|
|
||||||
```
|
|
||||||
|
|
||||||
- **`julia-packages.nix`** — no arguments, return a list of package name strings:
|
|
||||||
```nix
|
|
||||||
[ "DataFrames" "Plots" ]
|
|
||||||
```
|
|
||||||
|
|
||||||
## Formatting
|
|
||||||
|
|
||||||
```bash
|
|
||||||
nix fmt
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Uses `nixfmt-rfc-style` pinned via the flake's `formatter` output.
|
### Enabling Languages
|
||||||
|
|
||||||
|
To enable support for a specific language, edit `flake.nix` and set the corresponding cat to `true`:
|
||||||
|
|
||||||
|
#### Python
|
||||||
|
```nix
|
||||||
|
cats = {
|
||||||
|
python = true;
|
||||||
|
# ... other settings
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
Includes: Python 3, duckdb, polars packages by default
|
||||||
|
|
||||||
|
#### R
|
||||||
|
```nix
|
||||||
|
cats = {
|
||||||
|
r = true;
|
||||||
|
# ... other settings
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
Includes: fixest package by default
|
||||||
|
|
||||||
|
#### Julia
|
||||||
|
```nix
|
||||||
|
cats = {
|
||||||
|
julia = true;
|
||||||
|
# ... other settings
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
Includes: StatsBase package by default
|
||||||
|
|
||||||
|
### Custom Package Files
|
||||||
|
|
||||||
|
You can specify additional packages by creating these files in your project:
|
||||||
|
|
||||||
|
- `python-packages.nix` - Additional Python packages
|
||||||
|
```nix
|
||||||
|
p: with p; [
|
||||||
|
numpy
|
||||||
|
pandas
|
||||||
|
# ... more packages
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
- `r-packages.nix` - Additional R packages
|
||||||
|
```nix
|
||||||
|
p: with p.rPackages; [
|
||||||
|
ggplot2
|
||||||
|
dplyr
|
||||||
|
# ... more packages
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
- `julia-packages.nix` - Additional Julia packages
|
||||||
|
```nix
|
||||||
|
[
|
||||||
|
"DataFrames"
|
||||||
|
"Plots"
|
||||||
|
# ... more packages
|
||||||
|
]
|
||||||
|
```
|
||||||
|
|
||||||
|
## Available Commands
|
||||||
|
|
||||||
|
### Neovim
|
||||||
|
- `vv` - Launch Neovim (custom binary name)
|
||||||
|
- `vv --headless` - Run Neovim in headless mode for scripting
|
||||||
|
|
||||||
|
### Utilities
|
||||||
|
- `updateR` - Update R package snapshots from rstats-on-nix
|
||||||
|
- `cowsay` - Fun ASCII art text formatter (included as example)
|
||||||
|
|
||||||
|
## Customization
|
||||||
|
|
||||||
|
### Binary Name
|
||||||
|
|
||||||
|
The default binary name is `vv`. To change it, edit the `binName` in `flake.nix`:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
binName = "myeditor"; # Changes command from 'vv' to 'myeditor'
|
||||||
|
```
|
||||||
|
|
||||||
|
### Colorscheme
|
||||||
|
|
||||||
|
Change the colorscheme in the settings section:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
settings = {
|
||||||
|
colorscheme = "kanagawa"; # or "gruvbox", "tokyonight", etc.
|
||||||
|
background = "dark"; # or "light"
|
||||||
|
# ...
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
### Extra Packages
|
||||||
|
|
||||||
|
Add more system packages in the `extraPackages` section:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
extraPackages = with pkgs; [
|
||||||
|
cowsay
|
||||||
|
ripgrep
|
||||||
|
fd
|
||||||
|
# ... more packages
|
||||||
|
];
|
||||||
|
```
|
||||||
|
|
||||||
|
### Welcome Message
|
||||||
|
|
||||||
|
The template includes a welcome notification. Customize it in the `specs.extraLua` section:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
config = ''
|
||||||
|
require("mini.notify").setup()
|
||||||
|
vim.notify = MiniNotify.make_notify()
|
||||||
|
vim.notify("Welcome to ${name}!")
|
||||||
|
'';
|
||||||
|
```
|
||||||
|
|
||||||
|
## Environment Variables
|
||||||
|
|
||||||
|
The template sets the following environment variables:
|
||||||
|
|
||||||
|
- `IS_PROJECT_EDITOR=1` - Indicates you're in the project editor environment
|
||||||
|
- `R_LIBS_USER=./.nvimcom` - Project-local R package directory
|
||||||
|
|
||||||
|
## Language Package Management
|
||||||
|
|
||||||
|
### Replace vs Merge
|
||||||
|
|
||||||
|
By default, language packages are **replaced** rather than merged with base packages. This is controlled by:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
let
|
||||||
|
replace = pkgs.lib.mkForce;
|
||||||
|
in {
|
||||||
|
lang_packages = {
|
||||||
|
python = replace ([...]); # Replaces base packages
|
||||||
|
r = replace ([...]); # Replaces base packages
|
||||||
|
julia = replace ([...]); # Replaces base packages
|
||||||
|
};
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
To **merge** with base packages instead, remove the `replace` wrapper:
|
||||||
|
|
||||||
|
```nix
|
||||||
|
lang_packages = {
|
||||||
|
python = (with pkgs.python3Packages; [...]);
|
||||||
|
# ...
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
## Development Shell
|
||||||
|
|
||||||
|
The development shell provides access to the Neovim package plus additional utilities:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
nix develop # Enter the dev shell
|
||||||
|
```
|
||||||
|
|
||||||
|
Available in dev shell:
|
||||||
|
- `vv` - The configured Neovim
|
||||||
|
- `updateR` - Update R packages (when R support is enabled)
|
||||||
|
- All packages listed in `extraPackages`
|
||||||
|
|
||||||
|
## Testing
|
||||||
|
|
||||||
|
The ED template has comprehensive CI/CD tests:
|
||||||
|
|
||||||
|
### Automated Tests (`.github/workflows/check_ed.yml`)
|
||||||
|
|
||||||
|
1. **Basic Tests** (Ubuntu)
|
||||||
|
- Build verification
|
||||||
|
- Flake check
|
||||||
|
- Dev shell entry
|
||||||
|
- Neovim launch and version check
|
||||||
|
- Utility commands availability
|
||||||
|
|
||||||
|
2. **Language-Specific Tests**
|
||||||
|
- Python configuration: Package imports, code execution
|
||||||
|
- R configuration: Package loading, code execution
|
||||||
|
- Julia configuration: Version check, code execution
|
||||||
|
- Multi-language: All languages enabled together
|
||||||
|
|
||||||
|
3. **macOS Tests** (`.github/workflows/check_macos.yml`)
|
||||||
|
- Build verification on macOS
|
||||||
|
- Basic functionality tests
|
||||||
|
|
||||||
|
## Tips
|
||||||
|
|
||||||
|
1. **Use direnv for automatic environment loading:**
|
||||||
|
```bash
|
||||||
|
echo "use flake" > .envrc
|
||||||
|
direnv allow
|
||||||
|
```
|
||||||
|
|
||||||
|
2. **Pin specific package versions** by editing `flake.lock`:
|
||||||
|
```bash
|
||||||
|
nix flake update # Update all inputs
|
||||||
|
nix flake lock --update-input nixpkgs # Update specific input
|
||||||
|
```
|
||||||
|
|
||||||
|
3. **Check what's included in your build:**
|
||||||
|
```bash
|
||||||
|
nix path-info -Sh ./result
|
||||||
|
```
|
||||||
|
|
||||||
|
4. **Build for different platforms:**
|
||||||
|
```bash
|
||||||
|
nix build .#packages.x86_64-linux.default
|
||||||
|
nix build .#packages.aarch64-darwin.default
|
||||||
|
```
|
||||||
|
|
||||||
|
## Comparison with RDE Template
|
||||||
|
|
||||||
|
| Feature | ED Template | RDE Template |
|
||||||
|
|---------|-------------|--------------|
|
||||||
|
| **Complexity** | Lightweight | Comprehensive |
|
||||||
|
| **Binary Name** | `vv` | `p` |
|
||||||
|
| **Project Structure** | Manual | `p-initProject` command |
|
||||||
|
| **Language Support** | Optional (Python, R, Julia, Nix) | Built-in (R default, Python/Julia optional) |
|
||||||
|
| **Research Tools** | None | Quarto, Marimo, Pluto.jl |
|
||||||
|
| **Package Management** | updateR | p-updateDeps (comprehensive) |
|
||||||
|
| **Use Case** | Simple editing, lightweight projects | Research, data science, complex projects |
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
When modifying the ED template, please ensure:
|
||||||
|
|
||||||
|
1. All tests pass in `.github/workflows/check_ed.yml`
|
||||||
|
2. The template builds on both Linux and macOS
|
||||||
|
3. Documentation is updated to reflect changes
|
||||||
|
4. Changes follow the existing code patterns
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
See [LICENSE](../../LICENSE) file for details.
|
||||||
|
|
|
||||||
75
templates/ed/flake.lock
generated
75
templates/ed/flake.lock
generated
|
|
@ -7,11 +7,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1776413584,
|
"lastModified": 1771133455,
|
||||||
"narHash": "sha256-xqqv46MTveuT4yJH2YihmbHGy5mdLnnLFDebVmUws/E=",
|
"narHash": "sha256-DvHfkW3DctWV+YnigY4+5Stn9NgI38JqR2IScXDX8z8=",
|
||||||
"owner": "dwinkler1",
|
"owner": "dwinkler1",
|
||||||
"repo": "fran",
|
"repo": "fran",
|
||||||
"rev": "da09626e4dd8f0f57078b3a04e0443a8c20defa1",
|
"rev": "68b189ab981adae06590ee1929a70c8b86afd2b8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -22,16 +22,16 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1778869304,
|
"lastModified": 1771043024,
|
||||||
"narHash": "sha256-30sZNZoA1cqF5JNO9fVX+wgiQYjB7HJqqJ4ztCDeBZE=",
|
"narHash": "sha256-O1XDr7EWbRp+kHrNNgLWgIrB0/US5wvw9K6RERWAj6I=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "d233902339c02a9c334e7e593de68855ad26c4cb",
|
"rev": "3aadb7ca9eac2891d52a9dec199d9580a6e2bf44",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"ref": "nixos-unstable",
|
"ref": "nixos-25.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
@ -46,18 +46,17 @@
|
||||||
],
|
],
|
||||||
"plugins-cmp-pandoc-references": "plugins-cmp-pandoc-references",
|
"plugins-cmp-pandoc-references": "plugins-cmp-pandoc-references",
|
||||||
"plugins-r": "plugins-r",
|
"plugins-r": "plugins-r",
|
||||||
"r-nvim-nix": "r-nvim-nix",
|
|
||||||
"rixpkgs": [
|
"rixpkgs": [
|
||||||
"rixpkgs"
|
"rixpkgs"
|
||||||
],
|
],
|
||||||
"wrappers": "wrappers"
|
"wrappers": "wrappers"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1779362150,
|
"lastModified": 1770172480,
|
||||||
"narHash": "sha256-y3JTpxmNgtEYG1m21Ymvdmrul/WvJzOCX45AlV21aak=",
|
"narHash": "sha256-gem34C89cocBGuWLj7cdrAS5WkrOBp6V+ycQM/RhcCw=",
|
||||||
"owner": "dwinkler1",
|
"owner": "dwinkler1",
|
||||||
"repo": "nvimConfig",
|
"repo": "nvimConfig",
|
||||||
"rev": "af6d975129768cce36ac4c46198ab2b3ebaafad3",
|
"rev": "8f5c05252e914cb3738039a7ec13eb7d5955227a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -85,58 +84,32 @@
|
||||||
"plugins-r": {
|
"plugins-r": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1776905071,
|
"lastModified": 1769736135,
|
||||||
"narHash": "sha256-dXox6qEs1VDE7vPNDoN8bY4g06uj1IEs6uki72w8lpA=",
|
"narHash": "sha256-T4QgcBL+LCXvrEiRE2JW4jtUKl8DKzFHk8czGUO1jgY=",
|
||||||
"owner": "R-nvim",
|
"owner": "R-nvim",
|
||||||
"repo": "R.nvim",
|
"repo": "R.nvim",
|
||||||
"rev": "582f2af11290ac067e49018db38e12a511325556",
|
"rev": "2701ec64f5485e17c0e057081a9ae2058d776464",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "R-nvim",
|
"owner": "R-nvim",
|
||||||
"ref": "v0.99.4",
|
|
||||||
"repo": "R.nvim",
|
"repo": "R.nvim",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"r-nvim-nix": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": [
|
|
||||||
"nvimConfig",
|
|
||||||
"rixpkgs"
|
|
||||||
],
|
|
||||||
"rnvimsrc": [
|
|
||||||
"nvimConfig",
|
|
||||||
"plugins-r"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1778684156,
|
|
||||||
"narHash": "sha256-Z4y1tQfkIsPK4NRxGn668HMDfWxnxNxSJ0CAOOXiIfY=",
|
|
||||||
"owner": "dwinkler1",
|
|
||||||
"repo": "r_nvim_nix",
|
|
||||||
"rev": "2f49dfee27886068e2f49cbd54558ce4cc424c82",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "dwinkler1",
|
|
||||||
"repo": "r_nvim_nix",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"rixpkgs": {
|
"rixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1771303851,
|
"lastModified": 1770035835,
|
||||||
"narHash": "sha256-tgveHozOJ2D/mi3LxVy/FcmLFDlM5XKZxsNB2XpvzaM=",
|
"narHash": "sha256-Pi8f3LPTFmG7SZeAJEAamOWly1SZhEofT92uBqS4atY=",
|
||||||
"owner": "dwinkler1",
|
"owner": "rstats-on-nix",
|
||||||
"repo": "rixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "af2dd3f7b4b172077747c0869d4e30702fb71b0e",
|
"rev": "0d3fe7afce51d2126fdccf0b717d8048b90e4781",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "dwinkler1",
|
"owner": "rstats-on-nix",
|
||||||
"repo": "rixpkgs",
|
"ref": "2026-02-02",
|
||||||
"rev": "af2dd3f7b4b172077747c0869d4e30702fb71b0e",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -156,11 +129,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1779297405,
|
"lastModified": 1769745458,
|
||||||
"narHash": "sha256-VFoBwH7ZjVxCnvZTb5ODRXt70sLtWMxstive0N+RS50=",
|
"narHash": "sha256-Fq6THKEiAKx+wWQ4wTg9HvOAyD6i8JkWfHVQDZH7Byo=",
|
||||||
"owner": "BirdeeHub",
|
"owner": "BirdeeHub",
|
||||||
"repo": "nix-wrapper-modules",
|
"repo": "nix-wrapper-modules",
|
||||||
"rev": "e7ed7a1205945befdf2e0d73ba7df91d935e5af1",
|
"rev": "cc5e052dd1e93ae75dc06e3fabf46f0820c272f2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
||||||
|
|
@ -7,8 +7,7 @@
|
||||||
nvimConfig,
|
nvimConfig,
|
||||||
...
|
...
|
||||||
} @ inputs: let
|
} @ inputs: let
|
||||||
# ── Shared language support flags ──────────────────────────────
|
projectSettings = {pkgs}: {
|
||||||
# Used by both the neovim wrapper module and the devShell
|
|
||||||
cats = {
|
cats = {
|
||||||
clickhouse = false;
|
clickhouse = false;
|
||||||
gitPlugins = false;
|
gitPlugins = false;
|
||||||
|
|
@ -21,23 +20,12 @@
|
||||||
r = false;
|
r = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
# ── Language package lists ────────────────────────────────────
|
settings = let
|
||||||
# Shared between wrapper lang_packages and devShell toolchains.
|
# With `replace` packages are replaced otherwise they are merged with base packages
|
||||||
# Accept pkgs so they work inside forAllSystems for each system.
|
replace = pkgs.lib.mkForce;
|
||||||
|
in {
|
||||||
rPackages = pkgs:
|
lang_packages = {
|
||||||
(with pkgs.rpkgs.rPackages; [
|
python = replace (
|
||||||
fixest
|
|
||||||
# pkgs.extraRPackages.musicMetadata
|
|
||||||
])
|
|
||||||
++ (
|
|
||||||
if builtins.pathExists ./r-packages.nix
|
|
||||||
# p: with p.rPackages; [ ... ]
|
|
||||||
then import ./r-packages.nix pkgs.rpkgs
|
|
||||||
else []
|
|
||||||
);
|
|
||||||
|
|
||||||
pythonPackages = pkgs:
|
|
||||||
(with pkgs.python3Packages; [
|
(with pkgs.python3Packages; [
|
||||||
duckdb
|
duckdb
|
||||||
polars
|
polars
|
||||||
|
|
@ -47,52 +35,44 @@
|
||||||
# p: with p; [ ... ]
|
# p: with p; [ ... ]
|
||||||
then import ./python-packages.nix pkgs.python3Packages
|
then import ./python-packages.nix pkgs.python3Packages
|
||||||
else []
|
else []
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
juliaPackages =
|
r = replace (
|
||||||
["StatsBase"]
|
(with pkgs.rpkgs.rPackages; [
|
||||||
|
fixest
|
||||||
|
# pkgs.extraRPackages.musicMetadata
|
||||||
|
])
|
||||||
|
++ (
|
||||||
|
if builtins.pathExists ./r-packages.nix
|
||||||
|
# p: with p.rPackages; [ ... ]
|
||||||
|
then import ./r-packages.nix pkgs.rpkgs
|
||||||
|
else []
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
julia = replace ([
|
||||||
|
"StatsBase"
|
||||||
|
]
|
||||||
++ (
|
++ (
|
||||||
if builtins.pathExists ./julia-packages.nix
|
if builtins.pathExists ./julia-packages.nix
|
||||||
# [ ... ]
|
# [ ... ]
|
||||||
then import ./julia-packages.nix
|
then import ./julia-packages.nix
|
||||||
else []
|
else []
|
||||||
);
|
));
|
||||||
|
|
||||||
systems = ["aarch64-darwin" "x86_64-linux" "aarch64-linux"];
|
|
||||||
forAllSystems = nixpkgs.lib.genAttrs systems;
|
|
||||||
overlays = [inputs.nvimConfig.overlays.dependencies];
|
|
||||||
in {
|
|
||||||
formatter = forAllSystems (system: nixpkgs.legacyPackages.${system}.nixfmt-rfc-style);
|
|
||||||
|
|
||||||
packages = forAllSystems (system: let
|
|
||||||
pkgs = import nixpkgs {
|
|
||||||
inherit system overlays;
|
|
||||||
config = {allowUnfree = true;};
|
|
||||||
};
|
|
||||||
# Plain attrset — pkgs is captured from the surrounding scope,
|
|
||||||
# so the module system does not need lazy _module.args resolution.
|
|
||||||
projectSettings = {
|
|
||||||
inherit cats;
|
|
||||||
settings = let
|
|
||||||
# With `replace` packages are replaced otherwise they are merged with base packages
|
|
||||||
replace = pkgs.lib.mkForce;
|
|
||||||
in {
|
|
||||||
lang_packages = {
|
|
||||||
python = replace (pythonPackages pkgs);
|
|
||||||
r = replace (rPackages pkgs);
|
|
||||||
julia = replace juliaPackages;
|
|
||||||
};
|
};
|
||||||
colorscheme = "kanagawa";
|
colorscheme = "kanagawa";
|
||||||
background = "dark";
|
background = "dark";
|
||||||
wrapRc = true;
|
wrapRc = true;
|
||||||
};
|
};
|
||||||
binName = "nv";
|
binName = "vv";
|
||||||
|
|
||||||
env = {
|
env = {
|
||||||
IS_PROJECT_EDITOR = "1";
|
IS_PROJECT_EDITOR = "1";
|
||||||
|
R_LIBS_USER = "./.nvimcom";
|
||||||
};
|
};
|
||||||
|
|
||||||
runtimePkgs = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
cowsay
|
cowsay
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
@ -108,83 +88,34 @@
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
evalResult = nvimConfig.inputs.wrappers.lib.evalModules {
|
|
||||||
modules = [
|
systems = nixpkgs.lib.systems.flakeExposed;
|
||||||
nvimConfig.wrapperModules.default
|
forAllSystems = nixpkgs.lib.genAttrs systems;
|
||||||
projectSettings
|
overlays = [inputs.nvimConfig.overlays.dependencies];
|
||||||
];
|
|
||||||
};
|
|
||||||
in {
|
in {
|
||||||
default = evalResult.config.wrap {inherit pkgs;};
|
packages = forAllSystems (system: let
|
||||||
|
pkgs = import nixpkgs {inherit system overlays;};
|
||||||
|
baseNvim = nvimConfig.packages.${system}.default;
|
||||||
|
|
||||||
|
nvim = (baseNvim.eval (projectSettings {inherit pkgs;})).config.wrapper;
|
||||||
|
default = nvim;
|
||||||
|
in {
|
||||||
|
default = nvim;
|
||||||
});
|
});
|
||||||
|
|
||||||
devShells = forAllSystems (system: let
|
devShells = forAllSystems (system: let
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {inherit system overlays;};
|
||||||
inherit system overlays;
|
|
||||||
config = {allowUnfree = true;};
|
|
||||||
};
|
|
||||||
nv = self.packages.${system}.default;
|
nv = self.packages.${system}.default;
|
||||||
in {
|
in {
|
||||||
default = pkgs.mkShell {
|
default = pkgs.mkShell {
|
||||||
shellHook = ''
|
packages = [nv pkgs.updateR];
|
||||||
exec nu
|
|
||||||
alias gst='git status'
|
|
||||||
alias glol='git log --oneline --graph --decorate'
|
|
||||||
alias gc='git commit'
|
|
||||||
alias gl='git pull'
|
|
||||||
alias gp='git push'
|
|
||||||
'';
|
|
||||||
packages =
|
|
||||||
[
|
|
||||||
nv
|
|
||||||
pkgs.git
|
|
||||||
pkgs.pre-commit
|
|
||||||
pkgs.nushell
|
|
||||||
]
|
|
||||||
# ── R toolchain (R REPL, quarto, LSP, formatter) ─────
|
|
||||||
++ pkgs.lib.optionals cats.r (let
|
|
||||||
r_packages = (pkgs.baseRPackages or []) ++ rPackages pkgs;
|
|
||||||
in [
|
|
||||||
(pkgs.rWrapper.override {packages = r_packages;})
|
|
||||||
pkgs.radianWrapper
|
|
||||||
pkgs.air-formatter
|
|
||||||
pkgs.yaml-language-server
|
|
||||||
pkgs.nvimcom
|
|
||||||
pkgs.rnvimserver
|
|
||||||
])
|
|
||||||
# ── Python toolchain (interpreter, LSP, formatter) ────
|
|
||||||
++ pkgs.lib.optionals cats.python [
|
|
||||||
(pkgs.python3.withPackages (ps: pkgs.basePythonPackages ps ++ pythonPackages pkgs))
|
|
||||||
pkgs.nodejs
|
|
||||||
pkgs.ruff
|
|
||||||
pkgs.basedpyright
|
|
||||||
pkgs.uv
|
|
||||||
]
|
|
||||||
# ── Julia toolchain ───────────────────────────────────
|
|
||||||
++ pkgs.lib.optionals cats.julia [
|
|
||||||
pkgs.julia-bin.withPackages
|
|
||||||
juliaPackages
|
|
||||||
]
|
|
||||||
# ── Markdown toolchain (quarto, zk) ───────────────────
|
|
||||||
++ (let
|
|
||||||
r_packages = (pkgs.baseRPackages or []) ++ rPackages pkgs;
|
|
||||||
quarto =
|
|
||||||
if cats.r
|
|
||||||
then pkgs.quarto.override {extraRPackages = r_packages;}
|
|
||||||
else pkgs.quarto;
|
|
||||||
in
|
|
||||||
pkgs.lib.optionals cats.markdown [
|
|
||||||
pkgs.python313Packages.pylatexenc
|
|
||||||
quarto
|
|
||||||
pkgs.zk
|
|
||||||
]);
|
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
|
||||||
rixpkgs.url = "github:dwinkler1/rixpkgs/af2dd3f7b4b172077747c0869d4e30702fb71b0e";
|
rixpkgs.url = "github:dwinkler1/rixpkgs/nixpkgs";
|
||||||
fran = {
|
fran = {
|
||||||
url = "github:dwinkler1/fran";
|
url = "github:dwinkler1/fran";
|
||||||
inputs = {
|
inputs = {
|
||||||
|
|
|
||||||
20
templates/rde/flake.lock
generated
20
templates/rde/flake.lock
generated
|
|
@ -7,11 +7,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1776413584,
|
"lastModified": 1771133455,
|
||||||
"narHash": "sha256-xqqv46MTveuT4yJH2YihmbHGy5mdLnnLFDebVmUws/E=",
|
"narHash": "sha256-DvHfkW3DctWV+YnigY4+5Stn9NgI38JqR2IScXDX8z8=",
|
||||||
"owner": "dwinkler1",
|
"owner": "dwinkler1",
|
||||||
"repo": "fran",
|
"repo": "fran",
|
||||||
"rev": "da09626e4dd8f0f57078b3a04e0443a8c20defa1",
|
"rev": "68b189ab981adae06590ee1929a70c8b86afd2b8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -73,11 +73,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1777077449,
|
"lastModified": 1771043024,
|
||||||
"narHash": "sha256-AIiMJiqvGrN4HyLEbKAoCSRRYn0rnlW5VbKNIMIYqm4=",
|
"narHash": "sha256-O1XDr7EWbRp+kHrNNgLWgIrB0/US5wvw9K6RERWAj6I=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "a4bf06618f0b5ee50f14ed8f0da77d34ecc19160",
|
"rev": "3aadb7ca9eac2891d52a9dec199d9580a6e2bf44",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
@ -138,16 +138,16 @@
|
||||||
},
|
},
|
||||||
"rixpkgs": {
|
"rixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1776958221,
|
"lastModified": 1770035835,
|
||||||
"narHash": "sha256-cOHLrMWifj8HQMIG6gMhGowwPAkyX/kijDx38wK8kUM=",
|
"narHash": "sha256-Pi8f3LPTFmG7SZeAJEAamOWly1SZhEofT92uBqS4atY=",
|
||||||
"owner": "rstats-on-nix",
|
"owner": "rstats-on-nix",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "db90c554b7172188324b84deea35ed5975e20e44",
|
"rev": "0d3fe7afce51d2126fdccf0b717d8048b90e4781",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "rstats-on-nix",
|
"owner": "rstats-on-nix",
|
||||||
"ref": "2026-04-22",
|
"ref": "2026-02-02",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -219,7 +219,7 @@
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
inputs = {
|
inputs = {
|
||||||
rixpkgs.url = "github:rstats-on-nix/nixpkgs/2026-04-22";
|
rixpkgs.url = "github:rstats-on-nix/nixpkgs/2026-02-02";
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11";
|
||||||
nixCats = {
|
nixCats = {
|
||||||
url = "github:dwinkler1/nixCatsConfig";
|
url = "github:dwinkler1/nixCatsConfig";
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue