diff options
author | Soispha <soispha@vhack.eu> | 2023-08-26 21:01:25 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-26 21:01:25 +0200 |
commit | ea8342a69ac5f6b7858957a0ff2963c49e645811 (patch) | |
tree | 005c1698173bb86fb7b6bc99d03f1b19b1bc5465 | |
parent | Fix(c/src/main.c): Replace code with hello world (diff) | |
download | flake-templates-ea8342a69ac5f6b7858957a0ff2963c49e645811.tar.gz flake-templates-ea8342a69ac5f6b7858957a0ff2963c49e645811.zip |
Fix(c): Specify correct path instead of `./rust`
-rw-r--r-- | flake.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix index 4054e89..40557f3 100644 --- a/flake.nix +++ b/flake.nix @@ -42,7 +42,7 @@ welcomeText = "Please customize the text in the flake.nix and LICENSE.spdx files; Look at the TODO marks.\n Also run `git init`, `cargo init` and `cog install-hook commit-msg`"; }; c = { - path = ./rust; + path = ./c; description = "A C project"; welcomeText = "Please customize the text in the flake.nix, LICENSE.spdx files and the Makefile BIN_NAME variable; Look at the TODO marks.\n Also run `git init` and `cog install-hook commit-msg`"; |