mirror of
https://github.com/Death916/deathclock.git
synced 2026-04-10 03:04:40 -07:00
begin adding radio
This commit is contained in:
parent
bb266d405b
commit
f859756f46
4 changed files with 71 additions and 17 deletions
21
shell.nix
Normal file
21
shell.nix
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
let
|
||||
nixconfig = builtins.getFlake "github:death916/nixconfig";
|
||||
unstable = nixconfig.inputs.nixpkgs-unstable.legacyPackages.x86_64-linux;
|
||||
pkgs = nixconfig.inputs.nixpkgs.legacyPackages.x86_64-linux;
|
||||
in
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
python313Packages.uv
|
||||
python313Packages.ninja
|
||||
python313Packages.numpy
|
||||
bun
|
||||
|
||||
];
|
||||
shellHook = ''
|
||||
source .venv/bin/activate
|
||||
# export PATH="${pkgs.bun}/bin:$PATH"
|
||||
# export BUN_INSTALL="${pkgs.bun}/bin/bun"
|
||||
export REFLEX_USE_SYSTEM_BUN=True
|
||||
echo venv activated and bun version set
|
||||
'';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue