non important commit

This commit is contained in:
maxstrb 2026-02-18 16:16:00 +01:00
parent 2fb1686b7e
commit 60bba51792
3 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{
description = "My cpp development shell";
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
};
outputs = {nixpkgs, ...}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
inherit system;
};
in {
devShells."${system}" = {
default = pkgs.mkShell {
buildInputs = with pkgs; [
gcc
gnumake
];
};
};
};
}

View file

@ -0,0 +1,6 @@
#include<stdio.h>
int main (int argc, char **argv) {
printf("Hellow World!\n");
return 0;
}

View file

@ -84,6 +84,8 @@
ts.enable = true;
zig.enable = true;
csharp.enable = true;
clang.enable = true;
rust = {
enable = true;
extensions.crates-nvim.enable = true;