1
2
Fork
You've already forked hello-flake
1
simple flake
  • Nix 95.6%
  • Shell 4.4%
2026年05月02日 19:03:32 +01:00
.gitignore initial commit 2023年05月19日 20:20:31 +01:00
flake.lock update 2026年05月02日 19:03:32 +01:00
flake.nix migrate to flake-parts 2025年10月10日 17:38:07 +01:00
hello-flake initial commit 2023年02月11日 21:23:34 +00:00
LICENSE Initial commit 2023年02月11日 21:17:56 +00:00
README.md trivial 2025年09月14日 19:39:52 +01:00

hello-flake

A very simple demonstration using nix flakes. This package contains a single executable that prints a greeting.

Running the executable

There is no need to install anything (except nix). Simply run the command below.

nix run git+https://codeberg.org/mhwombat/hello-flake

To run a specific branch, use the command below.

nix run git+https://codeberg.org/mhwombat/hello-flake?ref=main

To run a specific branch and revision, use the command below.

nix run "git+https://codeberg.org/mhwombat/hello-flake?ref=main&rev=d44728bce88a6f9d1d37dbf4720ece455e997606"

Launching a shell

To get a shell with this package available, use the command below.

nix shell git+https://codeberg.org/mhwombat/hello-flake

As in the previous section, you can modify the URL to select a specific branch and revision.