pc changes
This commit is contained in:
parent
8c1dc764c4
commit
4efc6aa111
54 changed files with 1285 additions and 2 deletions
27
lib/shells/coreboot.nix
Normal file
27
lib/shells/coreboot.nix
Normal 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'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue