Skip Navigation
neoney neoney @lemmy.world

moved to @[email protected]

neoney.dev

PGP 0x1261173A01E10298

Posts 3
Comments 25
Is there something you lack in Wayland but have in xorg?
  • 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

  • What distro(s) do you use?
  • I guess you could compare the two then, but Nix is a full on functional programming language with functions, variables etc. You can also define derivations to compile programs with it. It’s pretty cool.

  • What distro(s) do you use?
  • am not familiar with docker-compose

  • Should I host a Lemmy instance on an Oracle Always Free VPS?
  • damn, I don’t even have $100 right now lol

  • i'm a living, breathing clichee
  • That’s not Rust though…

  • Should I host a Lemmy instance on an Oracle Always Free VPS?
  • Ahh, the Oracle firewall, always annoys me for some reason...

  • What distro(s) do you use?
  • Should work fine. I really recommend installing the nix package manager on your current distro to play with the language and how it works, I did it on arch to get familiar and it has been really helpful.

  • Should I host a Lemmy instance on an Oracle Always Free VPS?
  • I should upgrade my account then. My bank allows me to generate internet credit cards with a money limit, which I can just set to 0 B)

  • Lemmy Custom Theming/CSS
  • can’t wait for a Catppuccin theme, maybe I should make one🧐

  • What hardware are you using for your self-hosted lemmy instance?
  • Good luck getting through spam filters

  • Should I host a Lemmy instance on an Oracle Always Free VPS?
  • Thanks, I’ll hope to not use docker though - planning to run NixOS, which has a module for it.

    Just double checked, the nixpkgs for lemmy-ui and lemmy-server have aarch64-linux support B)

  • 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?

    25
    What distro(s) do you use?
  • For me, NixOS is like someone took the archwiki and made a distro with it. I can just do

    services.lemmy = {
      enable = true;
      settings = {
        hostname = "lemmy.union.rocks";
        database.createLocally = true;
      };
      caddy.enable = true;
    }
    

    in my system config (example from Nix manual). It will install lemmy, install caddy, start lemmy backend on port 8536, frontend on 1234, expose it with a caddy reverse proxy to that hostname, and initialize a postgres database. This is also reproducible across systems, so it's pretty much guaranteed to work the same on one PC and on another.

    This is very useful, because some programs require some more configuration, and this can remove the need to know where to put their config files, their package names, systemd service names from your head. It's all in there.

    Also, when I fuck something up... when changing the config, it makes a new boot entry with it, so when booting I can just press arrow down when booting to select an older, working config. Magic.

    Packages are also nicely separated from each other. I don't have to install stuff globally, when I need a program one time I can just do nix shell nixpkgs#audacity and have an ephemeral shell with the package installed.

    There are (optiona) binary caches, so you practically don't have to compile anything from source when updating your system.

    I have all my configuration on GitHub, like a lot of people, which makes it easy to share information.

    A con is that when a program hasn't been packaged for NixOS (whether it's in nixpkgs or has a flake.nix in the repo), it's not that easy to use it, so learning to write derivations (packages) for NixOS is pretty much a must have.

    Also another must have is being in some community that uses NixOS, because it is really hard to learn without someone to help and guide you IMO.

    Worth it though

  • What distro(s) do you use?
  • NixOS!

    I've switched my PC over to it after checking Nix (the package manager) out on Arch. Fell in love. It's a bit hard at the beginning, but it's worth it. Now my entire system configuration is in a GitHub repository, I can easily share it across devices, and when I fuck something up, I can just press arrow down when booting and have an older, working configuration.

  • Adwaita for Steam
  • 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.

  • State of Wayland gaming with Nvidia RTX? Is it good, or stick with Xorg?
  • One thing to note with sway and other wlroots based compositors - tearing is not a merged feature in wlroots, so you get pretty much always-on vsync, which means increased input lag which can matter in games like Osu.

  • 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 grabber. That means you get no website to manage it at port 8001, and it just runs in the background, not disturbing you. > I think it's worth it to add these 14 LOC to your system configuration, to help archive reddit.

    1
    Which distro has the best GUI in your opinion?
  • you should give hy3 a star :P