adisbladis@lemmy.blad.isM to Nix@lemmy.nix-community.org · 1 year agonix-unit - A unit testing tool for Nixplus-squaregithub.comexternal-linkmessage-square0fedilinkarrow-up14arrow-down10
arrow-up14arrow-down1external-linknix-unit - A unit testing tool for Nixplus-squaregithub.comadisbladis@lemmy.blad.isM to Nix@lemmy.nix-community.org · 1 year agomessage-square0fedilink
adisbladis@lemmy.blad.isM to Nix@lemmy.nix-community.org · 1 year agoNixCon 2023 - Darmstadt, Germany (Sept 08-10)plus-square2023.nixcon.orgexternal-linkmessage-square0fedilinkarrow-up12arrow-down10
arrow-up12arrow-down1external-linkNixCon 2023 - Darmstadt, Germany (Sept 08-10)plus-square2023.nixcon.orgadisbladis@lemmy.blad.isM to Nix@lemmy.nix-community.org · 1 year agomessage-square0fedilink
minus-squareadisbladis@lemmy.blad.istoOperating Systems@beehaw.org•That Computer Scientist - Nix is the New Arch!linkfedilinkEnglisharrow-up2·1 year ago NixOS had some problems particularly the llvm and clang compilers that complained a lot about missing standard libraries and headers. I think it’s likely that you’re trying to just add clang/llvm toolchains to your development shell like this: pkgs.mkShell { packages = [ llvmPackages_16.clang ]; }; But you actually want something like: (mkShell.override { inherit (llvmPackages_16) stdenv; }) { packages = [ ]; } linkfedilink
minus-squareadisbladis@lemmy.blad.istoFree and Open Source Software@beehaw.org•AMD reveals initial open source openSIL code to replace AGESA Firmwarelinkfedilinkarrow-up6·1 year agoOpen firmware is important for trusting your boot chain. Seeing their list of partners in the article makes it look like a bunch of cloud providers want to take early boot security very seriously. linkfedilink
adisbladis@lemmy.blad.is to Lemmy.nz Support@lemmy.nz · 1 year agoConsider hosting a medical cannabis communityplus-squaremessage-squaremessage-square0fedilinkarrow-up11arrow-down10
arrow-up11arrow-down1message-squareConsider hosting a medical cannabis communityplus-squareadisbladis@lemmy.blad.is to Lemmy.nz Support@lemmy.nz · 1 year agomessage-square0fedilink
I think it’s likely that you’re trying to just add clang/llvm toolchains to your development shell like this:
But you actually want something like: