🏗️」 wip: work in progress, not done yet.

This commit is contained in:
2025-09-08 14:45:35 +02:00
parent 0b98a48ef5
commit 5df7213f0a
2 changed files with 3 additions and 3 deletions

0
Justfile Normal file
View File

View File

@ -4,7 +4,7 @@
}; };
outputs = outputs =
inputs@{ nixpkgs, ... }: { nixpkgs, ... }:
let let
supportedSystems = [ supportedSystems = [
"x86_64-linux" "x86_64-linux"
@ -26,14 +26,14 @@
{ pkgs }: { pkgs }:
{ {
default = pkgs.mkShell { default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [
];
hardeningDisable = [ "all" ]; hardeningDisable = [ "all" ];
packages = with pkgs; [ packages = with pkgs; [
nixfmt-rfc-style nixfmt-rfc-style
gcc gcc
clang clang
just
]; ];
}; };
} }