Initial import

This commit is contained in:
Alexander Kobjolke 2023-04-18 13:10:45 +02:00
commit fa26479c42
5 changed files with 290 additions and 0 deletions

14
devenv.nix Normal file
View file

@ -0,0 +1,14 @@
{ pkgs, ... }:
{
packages = [ pkgs.git ]; #pkgs.clang pkgs.clang-tidy ];
# https://devenv.sh/languages/
languages.cplusplus.enable = true;
# https://devenv.sh/pre-commit-hooks/
# pre-commit.hooks.shellcheck.enable = true;
# https://devenv.sh/processes/
# processes.ping.exec = "ping example.com";
}