this post was submitted on 03 Aug 2025
137 points (97.9% liked)

Selfhosted

50282 readers
289 users here now

A place to share alternatives to popular online services that can be self-hosted without giving up privacy or locking you into a service you don't control.

Rules:

  1. Be civil: we're here to support and learn from one another. Insults won't be tolerated. Flame wars are frowned upon.

  2. No spam posting.

  3. Posts have to be centered around self-hosting. There are other communities for discussing hardware or home computing. If it's not obvious why your post topic revolves around selfhosting, please include details to make it clear.

  4. Don't duplicate the full text of your blog or github here. Just post the link for folks to click.

  5. Submission headline should match the article title (don’t cherry-pick information from the title to fit your agenda).

  6. No trolling.

Resources:

Any issues on the community? Report it using the report flag.

Questions? DM the mods!

founded 2 years ago
MODERATORS
 

What’s up, what’s down and what are you not sure about?

Let us know what you set up lately, what kind of problems you currently think about or are running into, what new device you added to your homelab or what interesting service or article you found.

Personally I'm finally reaping the fruits of my labour and enjoy my stable homelab without doing much. One node went down recently and the other took over until I restarted so I was not in a hurry to fix things. Enjoying family time and only running updates that aren't automated (yet). I'm about to dig a bit deeper into logging, probably setting up central log collection like Loki at some point, but not yet.

you are viewing a single comment's thread
view the rest of the comments
[–] Laser@feddit.org 2 points 5 days ago (1 children)

NixOS [...] learn everything

I don't think it's possible to learn everything for NixOS as a casual user / admin. It's massive. I was luckily able to sneak a NixOS project into work which gave me some paid time on the topic. But there's always room to learn more about it. Which is a good thing - by its nature, it's just more powerful than conventional distributions.

[–] uranibaba@lemmy.world 1 points 1 day ago (1 children)

I meant more figuratively. Finally managed to move my compose files to nix files thanks to compose2nix. One thing that throw me for a loop was that podman (or perhaps nix) creates a service named -. Compose2nix handles this accordingly but I had a few hours of head scratching until I figured that out.

[–] Laser@feddit.org 1 points 23 hours ago

Good luck on the journey! What I meant is that over time, you'll realize that what you did was probably not the most elegant was to do something, at least that's my experience with my config. Like, I started with a flake with an explicit config for each machine (basically multiple nixosConfigurations) and then turned it into a lib with functions to turn a set of hosts from json into an attribute set (kind of a simple inventory done). My last efforts that are still ongoing (cough) are splitting my NixOS modules off into a separate flake using flake-parts.

I do understand you meant having the stuff that your need work, I just wanted to hint that the language is very powerful and as such, most configurations have room for improvement, as in learning to do things more efficient or do things that weren't possible before.