From 14e973cacd8adb488a137a0b92216b75bd10a384 Mon Sep 17 00:00:00 2001 From: RGBCube Date: Sat, 27 May 2023 20:52:23 +0300 Subject: [PATCH] Remove venv alias as I will add one which activates --- machines/asus/python/default.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/machines/asus/python/default.nix b/machines/asus/python/default.nix index ef23c3f..f375b25 100644 --- a/machines/asus/python/default.nix +++ b/machines/asus/python/default.nix @@ -1,16 +1,10 @@ -{ lib, pkgs, systemPackages, homeConfiguration, enabled, ... }: lib.recursiveUpdate +{ pkgs, systemPackages, ... }: -(with pkgs; systemPackages [ +with pkgs; systemPackages [ (python311.withPackages (pkgs: with pkgs; [ pip requests ])) virtualenv poetry -]) - -(homeConfiguration "nixos" { - programs.nushell.shellAliases = { - venv = "virtualenv venv"; - }; -}) +]