mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 04:58:01 +00:00
be63b23770
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.
13 lines
537 B
Nix
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.
|
|
];
|
|
}
|