From 4f1d926d62c812e075039ca6b33358fbccc980ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Du=C3=9Fin?= Date: Fri, 23 May 2025 10:53:15 +0200 Subject: [PATCH] add clang to system packages I consider C support essential for my daily needs and different compiler versions not too important for my workstation needs when I work on projects alone. --- nix/chell.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/chell.nix b/nix/chell.nix index f42d8df..0d4952e 100644 --- a/nix/chell.nix +++ b/nix/chell.nix @@ -3,6 +3,9 @@ boot.binfmt.emulatedSystems = [ "aarch64-linux" ]; # Cross-compilation for aarch64 through QEMU environment.systemPackages = with pkgs; [ + clang + clang-manpages + clang-tools mangohud obs-studio ];