refactor(nix): No need to override python
Not sure why and how, but issue with `/usr/bin/env python3` just fixed itself after migrating to flake.nix... I might've messed up nix setup the first time
This commit is contained in:
parent
2155ef271d
commit
6f5ad0588d
1 changed files with 1 additions and 7 deletions
|
@ -1,11 +1,5 @@
|
||||||
{ pkgs, vars, ... }:
|
{ pkgs, vars, ... }:
|
||||||
|
|
||||||
let
|
|
||||||
python = pkgs.python312Full.override {
|
|
||||||
# FIXME: Build failed, maybe override postInstall instead?
|
|
||||||
#enableFramework = true;
|
|
||||||
};
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
# List packages installed in system profile. To search by name, run:
|
# List packages installed in system profile. To search by name, run:
|
||||||
# $ nix-env -qaP | grep wget
|
# $ nix-env -qaP | grep wget
|
||||||
|
@ -19,7 +13,7 @@ in
|
||||||
pkgs.pinentry_mac
|
pkgs.pinentry_mac
|
||||||
pkgs.gnupg
|
pkgs.gnupg
|
||||||
pkgs.htop-vim
|
pkgs.htop-vim
|
||||||
python
|
pkgs.python312Full
|
||||||
# FIXME: Build failed, dnspython pytest keep returning FAILED caused by timeout. Maybe find a way to bypass check for them
|
# FIXME: Build failed, dnspython pytest keep returning FAILED caused by timeout. Maybe find a way to bypass check for them
|
||||||
# (pkgs.poetry.override { python3 = python; })
|
# (pkgs.poetry.override { python3 = python; })
|
||||||
pkgs.python312Packages.pip
|
pkgs.python312Packages.pip
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue