pc changes

This commit is contained in:
Charlie Root 2024-05-24 14:57:38 +02:00
commit 4efc6aa111
54 changed files with 1285 additions and 2 deletions

27
lib/shells/coreboot.nix Normal file
View file

@ -0,0 +1,27 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-23.11";
pkgs = import nixpkgs {
config = {};
overlays = [];
};
in
pkgs.mkShellNoCC {
packages = with pkgs; [
m4
bison
ncurses
gcc
clang
gnat
zlib
flex
pkg-config
curl
zlib
coreboot-toolchain.x64
];
GREETING = "You're now in the coreboot build shell!;";
shellHook = ''cd /home/vali/repos/coreboot && echo $GREETING'';
}