add format option to spectacle-screenshot

This commit is contained in:
cswimr 2025-02-02 11:07:41 -06:00
parent 210d45a02e
commit 426206d4b3
Signed by: cswimr
GPG key ID: 0EC431A8DA8F8087
3 changed files with 41 additions and 12 deletions

View file

@ -3,13 +3,21 @@ let
config = { };
overlays = [ ];
};
pythonPackages = with pkgs.python312Packages; [
requests
pyperclip
pillow
pyside6
];
in
pkgs.mkShell {
packages = with pkgs; [
libnotify
python312
python312Packages.requests
python312Packages.pyperclip
python312Packages.pillow
];
packages =
with pkgs;
pkgs.lib.lists.unique (
[
libnotify
python312
]
++ pythonPackages
);
}