too lazy to write but it works
This commit is contained in:
parent
4b536b9b11
commit
3a7ec9f943
6 changed files with 145 additions and 90 deletions
|
|
@ -1,13 +1,21 @@
|
|||
{
|
||||
config,
|
||||
pkgs,
|
||||
lib,
|
||||
...
|
||||
}: let
|
||||
customPkgs = import ../pkgs {inherit pkgs lib;};
|
||||
{ config, pkgs, lib, ... }:
|
||||
let
|
||||
customPkgs = import ../pkgs { inherit pkgs lib; };
|
||||
in {
|
||||
imports = [
|
||||
../modules/python.nix
|
||||
];
|
||||
python.enable = true;
|
||||
environment.systemPackages = with pkgs; [
|
||||
# Applications
|
||||
(python311.withPackages (pyPkgs: with pyPkgs; [
|
||||
requests
|
||||
pip
|
||||
virtualenv
|
||||
ipython
|
||||
]))
|
||||
python3Packages.pip
|
||||
black
|
||||
ruff
|
||||
brave # TODO: make a module to save browser stuff
|
||||
vesktop
|
||||
git
|
||||
|
|
@ -89,4 +97,7 @@ in {
|
|||
nodePackages.pnpm
|
||||
zlib.dev
|
||||
];
|
||||
environment.shellAliases = {
|
||||
python = "python3.11";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue