mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
[nix] Add Python packages
This commit is contained in:
parent
992f650bc8
commit
79872ec7cb
1 changed files with 11 additions and 1 deletions
|
@ -57,6 +57,7 @@ let
|
|||
jdk
|
||||
nil
|
||||
nodejs_20
|
||||
python2
|
||||
ruby_3_1
|
||||
sbcl
|
||||
shards
|
||||
|
@ -77,7 +78,13 @@ let
|
|||
nerdfonts
|
||||
];
|
||||
|
||||
everything = system ++ base ++ languages ++ programs ++ multimedia ++ fonts;
|
||||
python = with python311Packages; [
|
||||
colorama
|
||||
psutil
|
||||
distro
|
||||
];
|
||||
|
||||
everything = system ++ base ++ languages ++ programs ++ multimedia ++ fonts ++ python;
|
||||
};
|
||||
|
||||
# Old solution kept for posterity {{{
|
||||
|
@ -140,6 +147,9 @@ in
|
|||
|
||||
# Absolutely proprietary.
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
nixpkgs.config.permittedInsecurePackages = [
|
||||
"python-2.7.18.6"
|
||||
];
|
||||
|
||||
# Make sure the nix daemon always runs
|
||||
services.nix-daemon.enable = true;
|
||||
|
|
Loading…
Reference in a new issue