workstation virtually...done!

This commit is contained in:
2024-05-11 22:57:41 -06:00
parent bdfbf790ec
commit 58878b21ed
10 changed files with 159 additions and 93 deletions

View File

@@ -0,0 +1,21 @@
{ config, lib, pkgs, ... }: {
imports = [ ./base.nix ];
config = {
users.users.jawz.packages = (with pkgs; [ gallery-dl yt-dlp ]);
my.scripts.download = {
enable = true;
install = true;
service = false;
name = "download";
package = with pkgs.python3Packages;
(buildPythonApplication rec {
pname = "download";
version = "2.0";
src = ../../scripts/download/.;
doCheck = false;
buildInputs = [ setuptools ];
propagatedBuildInputs = [ pyyaml types-pyyaml ];
});
};
};
}