nixos-config/shells/flatpak.nix
Gabriel Arazas be63b23770 Create development shells
Only with the basics for now. I've yet to explore more complex use cases
such as the following repos:

- https://github.com/GTrunSec/Coding-Dev-Env-With-NixFlake
- https://github.com/LavaDesu/flakes

This seems nifty feature especially when doing some project spelunking
or something.
2021-12-13 15:32:58 +08:00

13 lines
537 B
Nix

# My custom shell for developing Flatpak manifests.
{ mkShell, lib, flatpak-builder, editorconfig-checker, editorconfig-core-c, git, dasel }:
mkShell {
packages = [
dasel # For converting various data into something.
flatpak-builder # A required tool.
editorconfig-checker # We're most likely writing manifests in YAML so I need them consistent spaces.
editorconfig-core-c # editorconfig will not work without the engine, of course.
git # This is the common choice as the VCS — otherwise, bring your own.
];
}