Good bye NixOS, Hello Debian (Again)!
Good bye NixOS, Hello Debian (Again)!

Good bye NixOS, Hello Debian (Again)!

Good bye NixOS, Hello Debian (Again)!
Good bye NixOS, Hello Debian (Again)!
I feel NixOS shines more on a server or specific setups. It's kind of meant for development also and occasionally you'll see some flakes or CI workflows in some project repositories. Idk I have a shell with a fhs environment and pip but it took some extra steps to get numpy, tensorflow and all C/C++ dependencies working but now I just use that for the Python stuff. And we have Distrobox, Docker/Podman... But yeah, I've invested more time in NixOS config and packaging than I'm willing to admit. Not only is it necessary to learn the functional programming language to write the declarative config... You'll also have to learn how a million of gears hook into each other to make things happen in the background. It's often not possible to do simple things without that additional (very specific) background knowledge.
"Not only is it necessary to learn the functional programming language to write the declarative config"
Holy shit haha! I've never actually looked into NixOS but this right here tells me it isn't for me.
I get that this seems very intimating, but if you've ever used more than three programming languages in your life, I believe you won't have much to learn.
I can mimic the syntax and I very roughly understand how the import system works. But I don't know Nix! Yet I haven't had any trouble language wise over the last few years.
In my experience most of the "code" you write is package names and those can be copied from search.nixos.org.
In that sense I'm effectively using it as a markup language and I don't think anyone has ever gotten discouraged by having to "learn" YAML, just so they can write a config file for some piece of software they want to use.
Something that I would take as discouragement is the state of the documentation. It has been improving to a usable level in some areas but other areas are heavily outdated or just plain missing.
If you're using GNU/Linux systems for almost three decades, you know your basics on how to help yourself. With Nix, you start almost from scratch.
This is why I just never attempted it. It sounds interesting but you have to learn a new DSL essentially, a new way of configuring everything, etc. Then like the author- I haven't really ever had to roll back and if I did need to fix I know how to boot a live CD, chroot, etc. And if youre learning all nix you could learn that if ever needed.
So I made an ansible playbook a couple years back if I ever needed it. Still haven't really. But it'll get me to 80% if ever needed. Didn't take much time and I have backups anyway.
Even for servers I'd rather just use containers. Just a lot of effort for a moving target where I just don't see near enough of a payoff, personally.
Guess I was just never into DSL. How different was it?
Domain specific language. Just learning that to configure vs. using a general format like yaml to define.
I recently installed NixOS on my server instead of Debian. OP most have done some really fancy stuff to have had the problems described, but I agree with having to relearn everything from scratch. As for flakes and home manager, I just ignored them. Too much to learn as is.
You won't really need home-manager on a server anyways. It's for managing the configuration files in your home-folder, so you might customize the shell of your root user with it and that's about it.
Home-manager makes a lot more sense on desktop computers. I actually have kind of the opposite 'problem'. I started out by using home-manager on a different distro and even though I switched to NixOS by now (because the other distro's installation mysteriously imploded one day), I haven't bothered to learn the non-home-manager way yet. You can do almost everything in home-manager, too, at least when you don't need to administer for multiple users.
And as for Flakes, I feel like they sound a lot scarier than they are. If you're just an end user (not trying to distribute Flakes to others), then it's basically just a handful of different commands to use and one more Nix file at the root of your configuration. I had to sit myself down for an hour or so to figure that stuff out and I haven't touched it much since then.
I can understand not prioritizing them, though. It's not like you switch to Flakes and then everything is different. It's mostly just a different way of doing things, a different set of complexity (they replace Nix Channels, for example), which makes your configuration more reproducible, should you ever need that.
I was wondering why he couldn't just use the normal way of modifying configuration files to configure Xfce.
Here on KDE, about half my configurations are stuff like configFile.kwinrc.Windows.FocusPolicy = "FocusFollowsMouse";
, which basically just modifies ~/.config/kwinrc
to contain a section:
ini
[Windows] FocusPolicy = FocusFollowsMouse
This isn't always pretty, especially when the configuration format is itself not the prettiest, but it seemed a lot simpler than using this xfconf
thing.
But well, the reason is that Xfce's configuration format is severely ugly. Namely, it's in XML.
XML is a markup language, not a configuration language, so it has a far more complex structure, which you cannot easily formulate in the Nix syntax.
You could still include those XML files as a whole and have Nix roll them out with some mild templating. But yeah, at that point, Nix doesn't actually do much.
I don't agree that you have to use Sway (configuring KDE works well for me, for example), but yeah, some pieces of software will just not have decent configuration files, so if you want to use those, you have to configure them the non-Nix way.
I do wish NixOS wasn't as much of an investment, so that folks could just appreciate it when it helps them configure something and wouldn't be disappointed where it can't do that.
To some degree, I feel like using just Nix Home-Manager on another distro alleviates that, but it has some other pitfalls and I'm not yet wizard enough to know all the benefits that NixOS' particular way of doing things brings along.
I feel like every time I see a blogpost like this, the author is experiencing a substantial amount of cognitive dissonance.
Besides stating that their python scripts don't work the usual way, it's just a wall of text, expressing "I don't care about the features nix offers, and i've tried using it the way it's not meant to be used, therefore it's bad".
Surely you don't have to be a phd in compsci to understand that this doesn't make any sense
I agree about Python, but it's not Nix making demands about a clean solution, it's Python package management making assumptions about how things work.
Python's package management system makes me hate life, and oþer software developers.
The biggest problem with deliberately using a thorn instead of 'th' is that you make it that more difficult for those of us with dyslexia or other reading problems. I can understand the quirk, but you just reduce your readability.
*other
at my current job as a dba (only three weeks left until i move) we were given a choice of python, or bash for writing automation stuff. The bash tools still work albeit they are a bitch to get correct. The python ones are brittle as fuck and totally unmaintainable by now. And it's mostly due to packaging
Using the thorn in modern English just looks pretentious, or like /r/im14andthisisdeep material.
pip is horrible, but there are really decent alternatives like Poetry.