Rename project to FeDIY and update related configurations and documentation

This commit is contained in:
2026-05-23 09:53:29 -05:00
parent d61a91aac8
commit 6a825d1e83
6 changed files with 30 additions and 29 deletions
+7 -7
View File
@@ -1,6 +1,6 @@
# Rust Nix Flake Template
# FeDIY
This template provides a reproducible Rust development environment using Nix flakes and the fenix toolchain.
FeDIY provides a reproducible Rust development environment using Nix flakes and the fenix toolchain.
## Quick Start
@@ -44,7 +44,7 @@ The devShell automatically installs common embedded Rust targets via `rustup`:
## Flatpak Packaging
This template supports building Flatpak packages for your Rust application.
This project supports building Flatpak packages for the FeDIY application.
### Build Flatpak Package
@@ -66,8 +66,8 @@ Edit `flatpak/app.flatpak.json` to update app ID, runtime, build commands, or so
You can install and run the built Flatpak locally:
```bash
flatpak install --user build-flatpak/org.example.rustdevshell.flatpak
flatpak run org.example.rustdevshell
flatpak install --user build-flatpak/com.moturpin.fediy.flatpak
flatpak run com.moturpin.fediy
```
## Included Tools
@@ -153,10 +153,10 @@ See project.toml for example metadata.
## Packaging for nixpkgs
This template is structured for easy packaging in nixpkgs:
This project is structured for packaging in nixpkgs:
- All sources in `src/`
- `flake.nix` provides a devShell and template
- `flake.nix` provides a devShell and package outputs
- Add a `default.nix` or package expression as needed for nixpkgs
See [nixpkgs Rust packaging docs](https://nixos.org/manual/nixpkgs/stable/#rust) for more details.