this post was submitted on 07 Jul 2023
1817 points (97.9% liked)

linuxmemes

19676 readers
122 users here now

I use Arch btw


Sister communities:

Community rules

  1. Follow the site-wide rules and code of conduct
  2. Be civil
  3. Post Linux-related content
  4. No recent reposts

Please report posts and comments that break these rules!

founded 1 year ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] di5ciple 15 points 11 months ago (2 children)

Arch linux is the gateway drug that leads to NixOS

[–] [email protected] 4 points 11 months ago (2 children)

How is Nixos? Are there clear advantages over a traditional Linux distro?

[–] what 5 points 11 months ago* (last edited 11 months ago) (1 children)

Nix hype has been high the last several months for some reason despite it being around for awhile. I think DevOps guys are just now discovering it or something.

Disclosure: I haven't used it. I've just watched a few videos and have been following the hype. Someone correct me if I'm wrong.

My understanding is that it is similar to the idempotency that Terraform brings but on a OS, packages and code level.

Basically you define (in a file) everything you want on the OS from packages to settings to custom repos and it installs everything so even if something goes sideways and say your server gets hacked, you just start over not from scratch or hopefully a clean fallback image but with everything you need installed out of the gate on a fresh install.

Can also be super useful for ensuring your whole team is using the same setup. No more reading a manual for this one obscure firewall that some random guy setup. Your firewall (or whatever else) was installed and configured out of the box, plus it is the same org wide.

[–] [email protected] 1 points 11 months ago

With flakes, you can also lock the project or your system to an exact commit of the nixpkgs repo, meaning you get the same versions until you update the lock file. It's like a npm or cargo lock file, but for the whole system.

The nix packages define how to build and configure it, so the build part is like Gentoo. It has a powerful cache setup, so you rarely need to really build anything. Need a custom kernel though? Define your patches in your config and it works exactly the same until you update it.

[–] [email protected] 3 points 11 months ago* (last edited 11 months ago) (1 children)

Learn a dynamic lazy functional programming language first and then start building a flake without much help or documentation because that's what you should be doing and the default installation doesn't use that mechanism. The docs you find will assume you understand category theory already.

About few years later you are a god and there is no way you're going to use anything else ever again.

Source: been a user for the past four years.

[–] [email protected] 10 points 11 months ago (2 children)

I understood maybe three things in your reply so NixOS probably not for me.

[–] di5ciple 8 points 11 months ago

He didn’t explain it well. The whole system lives on a ymal file and is easy to read. Documentation as code. If you have a working system then you’re set, it’ll never break. Adding software uses it’s own dependencies and will never break other software. It also has roll back features like snapshot/btrfs, during bootup you can go back to a previous version of your system. With the ymal file it makes it easy to clone the setup from others or for other systems of yours in the future, just have to generate a hardware file in most cases.

[–] [email protected] 1 points 11 months ago

Yeah, that's what I wanted to communicate! But, there is a spot for this OS: you've been a programmer for decades now, you still love Linux and you've customized every piece of your desktop and programming environment. Now, NixOS gives you the possibility to write one config to configure everything: from your system daemons to the desktop wallpaper, from the editor theme to the kernel boot parameters. And when you store a lock file, the same configuration that worked correctly in one machine, will work exactly the same in another computer.

So, you have a workstation, maybe another workstation in the office and a laptop? You change something in your setup, and this setup gets replicated exactly the same in every other machine when you push your changes to the version control. This is very nice, especially if you have a highly customized emacs, vim or helix as your editor, and like to try out new tools outside of coretools for the CLI lyfe.

Another thing, where you don't even need NixOS (just the nix package manager installed in your Linux, Mac or Windows machine), is how you can configure your project dependencies with it. Now, you run a business that develops software with maybe Rust and TypeScript, or Go and Javascript. You need a special version of OpenSSL or a certain version of Rust. The project then has the nix flake in it, and nix-direnv. The devs enter the directory and nix installs every single tool needed for the project correctly for everybody. The same version, the same config, everything streamlined for the whole team. If the env works correctly for one dev, it works for everybody.

I hope this answers why you'd like to put some effort to learn it. It's hard in the beginning, but there's a huge payback for certain use cases.

[–] jelloeater85 1 points 11 months ago (1 children)
[–] di5ciple 2 points 11 months ago

I replied in another comment about some of it’s features. I love it, its really hard to break even compared to my previous Arch install using auto snapshots on btrfs.