mirror of
https://github.com/scito/extract_otp_secret_keys.git
synced 2025-12-06 14:54:57 +01:00
24 lines
254 B
Nix
24 lines
254 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
inputs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
cachix.enable = false;
|
|
|
|
languages.python = {
|
|
enable = true;
|
|
venv = {
|
|
enable = true;
|
|
requirements = ./requirements.txt;
|
|
};
|
|
};
|
|
|
|
packages = [
|
|
pkgs.git
|
|
pkgs.zbar
|
|
];
|
|
}
|