non important commit

This commit is contained in:
maxstrb 2026-02-19 09:36:11 +01:00
parent 6a45494416
commit 6d517609de
2 changed files with 10 additions and 6 deletions

View file

@ -5,7 +5,11 @@
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable"; nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
}; };
outputs = {nixpkgs, ...}: let outputs = {
self,
nixpkgs,
...
}: let
system = "x86_64-linux"; system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
@ -21,7 +25,7 @@
}; };
}; };
defaultPackage."${system}" = with import pkgs; defaultPackage."${system}" = with pkgs;
stdenv.mkDerivation { stdenv.mkDerivation {
name = "${name}"; name = "${name}";
src = self; src = self;

View file

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