improved automatic script alias creation and switched to lookup paths for nix-shell invocations

This commit is contained in:
cswimr 2024-12-02 15:05:24 -05:00
parent 41a1a6a5f5
commit 209294075c
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
7 changed files with 21 additions and 10 deletions

13
scripts/nix/python.nix Normal file
View file

@ -0,0 +1,13 @@
let
pkgs = import <nixpkgs> {
config = { };
overlays = [ ];
};
in pkgs.mkShellNoCC {
packages = with pkgs; [
libnotify
python312
python312Packages.requests
python312Packages.pyperclip
];
}