Skip Navigation
neoney

moved to @[email protected]

neoney.dev

PGP 0x1261173A01E10298

Posts
2
Comments
4
Joined
2 yr. ago
  • You are most definitely running Discord in XWayland. You need to add chromium flags to make it run in native Wayland. You also need to have an xdg desktop portal to support screen sharing.

    If you want screenshare to work on an app that can't run in wayland, use XWaylandVideoBridge

  • Selfhosted @lemmy.world
    neoney @lemmy.world

    Should I host a Lemmy instance on an Oracle Always Free VPS?

    I have an Oracle Always Free VPS. 4 ARM Ampere A1 vCPUs, 24GB RAM, 200GB storage. Will this be a good fit as a server for a Lemmy instance? Are there any issues with hosting Lemmy on aarch64?

  • I'm pretty sure the website is mostly directed at distro maintainers, to not force a custom theme on users. They're fine with users tinkering on their own.

  • NixOS @infosec.pub
    neoney @lemmy.world

    Easily archiving reddit with ArchiveTeam Warrior on NixOS

    cross-posted from: https://lemmy.world/post/63788

    Hi, I want to share with you the way I figured out to easily archive reddit content with ArchiveTeam Warrior on NixOS. You can set it up fully in nix config!

    Okay, first of all, you'll need to enable docker or podman. I chose podman here:

     nix
        
    virtualisation.podman = {
      enable = true;
      dockerCompat = true;
    
      defaultNetwork.settings.dns_enabled = true;
    };
    
      

    After that, all you have to do is run the docker image! Here's how I do it with podman:

     nix
        
    virtualisation.oci-containers.backend = "podman";
    virtualisation.oci-containers.containers = {
      archive-team-warrior = {
        image = "atdr.meo.ws/archiveteam/reddit-grab";
        autoStart = true;
        cmd = ["YOUR_USERNAME_HERE_FOR_LEADERBOARD"];
        extraOptions = ["--network=host"];
      };
    };
    
      

    This doesn't start the full ArchiveTeam Warrior, but only the reddit

  • Not much. I have a searxng instance, used to have nextcloudโ€ฆ I should start hosting more stuff really soon