video download helper, fooyin, etc

This commit is contained in:
2024-05-25 20:40:21 -06:00
parent f71472a1ff
commit d3c7401438
10 changed files with 239 additions and 19 deletions

View File

@@ -4,6 +4,7 @@ let
(builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master") {
config = config.nixpkgs.config;
};
vdhcoapp = pkgs.callPackage ../../pkgs/vdhcoapp/default.nix { };
in {
imports = [
# <agenix/modules/age.nix>
@@ -12,7 +13,10 @@ in {
../../gnome.nix
./obs-studio.nix
];
programs.obs-studio = { enable = true; };
programs.obs-studio = {
enable = true;
enableVirtualCamera = true;
};
my = {
emacs.enable = true;
apps = {
@@ -99,6 +103,8 @@ in {
groups.nixremote.gid = 555;
users = {
jawz.packages = (with pkgs; [
fooyin
vdhcoapp
gocryptfs # encrypted filesystem! shhh!!!
torrenttools # create torrent files from the terminal!
vcsi # video thumbnails for torrents, can I replace it with ^?
@@ -150,4 +156,15 @@ in {
httpListenAddr = "0.0.0.0";
directoryRoot = "/resilio";
};
virtualisation = {
podman = {
enable = true;
# Create a `docker` alias for podman, to use it as a drop-in replacement
dockerCompat = true;
# Required for containers under podman-compose to be able to talk to each other.
defaultNetwork.settings.dns_enabled = true;
};
};
}