this post was submitted on 06 Aug 2023
81 points (88.6% liked)

Asklemmy

42525 readers
1027 users here now

A loosely moderated place to ask open-ended questions

Search asklemmy ๐Ÿ”

If your post meets the following criteria, it's welcome here!

  1. Open-ended question
  2. Not offensive: at this point, we do not have the bandwidth to moderate overtly political discussions. Assume best intent and be excellent to each other.
  3. Not regarding using or support for Lemmy: context, see the list of support communities and tools for finding communities below
  4. Not ad nauseam inducing: please make sure it is a question that would be new to most members
  5. An actual topic of discussion

Looking for support?

Looking for a community?

~Icon~ ~by~ ~@Double_[email protected]~

founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] [email protected] 13 points 11 months ago (2 children)

NixOS! Definitely not for beginners, and also definitely not for people who are used to the arch way and want something similar.

It's a declarative OS, versus most Linux distros which are imperative:

  • Declarative: You define exactly what is what, such as what packages should be on your system, your configs, etc.
  • imperative: you modify those stuff yourself after initialization (installing).

So, instead of having to install KDE and change my display manager to use it, I just add this line to my configuration file:

services.xserver.plasma5.enable = true;

If something wrong happens, I just change the config file to its old version. I can also share this config, and then the other person can run nixos-rebuild to get my exact system configuration.

[โ€“] [email protected] 2 points 11 months ago

Absolutely agree, it's a very steep learning curve but once it clicks it's hard to go back to the old. It's good on the desktop but I started running it on my server recently and I can't stress how nice it is to just see everything in one place, especially with nix flakes. It's been difficult with some stuff like running firefish (formerly calckey) but it's hard to come by services that don't have good support

[โ€“] [email protected] 2 points 11 months ago (1 children)

I really want to give NixOS a try when I have some time to learn. I've been on Arch for a couple years now, and I'm ready for a change. Lol.

Any places you recommend going to learn how to get started in addition to the official docs?

[โ€“] [email protected] 3 points 11 months ago

You should definitely use the tool called home manager for per user configs, they have good docs too and make configs for popular programs super easy