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

View file

@ -1,15 +0,0 @@
let
nixpkgs = fetchTarball
"https://github.com/NixOS/nixpkgs/archive/nixos-unstable.tar.gz";
pkgs = import nixpkgs {
config = { };
overlays = [ ];
};
in pkgs.mkShellNoCC {
packages = with pkgs; [
libnotify
python312
python312Packages.requests
python312Packages.pyperclip
];
}