mirror of
https://github.com/Dasharo/Openness-Score.git
synced 2026-06-13 19:16:16 -07:00
26 lines
369 B
Nix
26 lines
369 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs;
|
|
{
|
|
packages = [
|
|
coreboot-utils
|
|
uefitool
|
|
lzma
|
|
stdenv.cc.cc.lib
|
|
glib
|
|
];
|
|
|
|
languages.python.enable = true;
|
|
languages.python.venv.enable = true;
|
|
|
|
enterShell = ''
|
|
echo "Welcome!"
|
|
pip install -r ./requirements.txt
|
|
'';
|
|
|
|
# pre-commit.hooks = {
|
|
# # lint shell scripts
|
|
# shellcheck.enable = true;
|
|
# };
|
|
}
|