1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-30 11:37:44 +00:00

Remove venv alias as I will add one which activates

This commit is contained in:
RGBCube 2023-05-27 20:52:23 +03:00
parent 7cd97004db
commit 14e973cacd
No known key found for this signature in database

View file

@ -1,16 +1,10 @@
{ lib, pkgs, systemPackages, homeConfiguration, enabled, ... }: lib.recursiveUpdate { pkgs, systemPackages, ... }:
(with pkgs; systemPackages [ with pkgs; systemPackages [
(python311.withPackages (pkgs: with pkgs; [ (python311.withPackages (pkgs: with pkgs; [
pip pip
requests requests
])) ]))
virtualenv virtualenv
poetry poetry
]) ]
(homeConfiguration "nixos" {
programs.nushell.shellAliases = {
venv = "virtualenv venv";
};
})