this post was submitted on 29 Nov 2023
151 points (99.3% liked)

Linux

47231 readers
777 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
top 39 comments
sorted by: hot top controversial new old
[–] [email protected] 52 points 9 months ago (4 children)

Seeing this prompted me to do an experiment.

There was a time when Nixpkgs was smaller than the AUR. And, until recently, Nixpkgs was larger than the AUR but still smaller than the combination of the main Arch repos with the AUR.

As it turns out, the current total package count for Arch and the AUR is 85,819.

For nixpkgs unstable, that number is 88,768.

NixOS 23.05 Stable has 83,740.

And considering the mention of 9,147 new packages and 4,015 removed packages, that would mean that 23.11 would have a total of:

88,872 packages. This is more than the current figures for Nixpkgs unstable, but this is going off data from separate sources (NixOS devs and repology, with repology still being slightly outdated)

And, as such, I think it's fair to say the winner is (drumroll please)....

The USER for having such incredible distributions, giving him the vast breadth of choice for what distro matches their workflow best.

[–] [email protected] 16 points 9 months ago

Gender neutral him moment

[–] [email protected] 9 points 9 months ago (1 children)

Though the difference is AUR packages aren't officially supported or tested and are commonly out of date. They also need to be built on your system

[–] korfuri 9 points 9 months ago

To be fair, the level of support for packages in nixpkgs is inconsistent. My config has a number of backported packages overlaid on top of nixpkgs where upstream is not up to date enough for me.

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

There may be more but that doesn't mean that every Arch package is available on Nix

[–] [email protected] 0 points 9 months ago (1 children)

There is also nur (nix user repositories) which i think is more like AUR.

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

In my 4 years of intensively using Nix/NixOS, I've never used the NUR. I wouldn't know what for tbh. as it's easier for everyone to have things in Nixpkgs instead.

[–] [email protected] 11 points 9 months ago (2 children)
[–] [email protected] 6 points 9 months ago
[–] [email protected] 2 points 9 months ago (3 children)

Does Nix need user namespaces, and does it allow good Sandboxing like Podman or Flatpak?

[–] [email protected] 1 points 9 months ago (1 children)

I've used flatpak in the past, and although you basically give up the declarative aspect they worked fine as far as I remember

[–] [email protected] 1 points 9 months ago (1 children)

That was not answering the question 😅

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

Ah, I think I see what you meant now. My bad!

[–] [email protected] 1 points 9 months ago (1 children)

Nix packages arent containerized by default. But since every depenedency is clearly defined. there are tools wrap packkages using bublewrap, or tools build layered docker imahes

But building packages happens in sandbox

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

Great thanks! So Fedora+Nix (maybe some hacky way to symlink it to /var/nix on every boot and it can run on Atomic too)+bubblejail (there is a COPR now for use in secureblue) could be a great setup!

Any info about namespaces? Hardened kernels block these for valid reasons. Flatpaks can use bubblewrap-suid, Podman is supposedly not compatible (not sure about that)

[–] [email protected] -3 points 9 months ago

No idea, I use Gentoo

[–] [email protected] 10 points 9 months ago (3 children)

I'm new to NixOS. Do I have to do anything extra to update NixOS? Or do I just update my flake and run nixos-rebuild switch --flake like I normally do to update packages?

[–] [email protected] 12 points 9 months ago

If you are using flakes you should check your flakes' inputs (probably the one called nixpkgs) and then change the URL to match the channel for 23.11. Finally, you should of course rebuild your system.

[–] [email protected] 8 points 9 months ago* (last edited 9 months ago) (2 children)

I'm not sure (I'm about to install it for the first time - on this computer) - According to this all you need to do is:

# nix-channel --add https://channels.nixos.org/nixos-23.11 nixos
# nixos-rebuild switch --upgrade
[–] [email protected] 3 points 9 months ago

This procedure doesn't work with flakes as they come with "channels included".

[–] [email protected] 0 points 9 months ago (2 children)

What if I just want to upgrade some packages? Like not change channel, but Firefox needs an update? I'm not op and don't use flakes btw

[–] [email protected] 3 points 9 months ago (1 children)

If using flakes you could just for instance add another input. You can also set the input URLs to specific states of the nixpkgs repository by eg referencing specific commits. Then, you should be able to just, e.g., pick Firefox from unstable, another package from the current stable channel, and maybe a broken package from a pull request fixing said package.

If you are not using flakes you can also add system wide channels. IIRC you can then import these channels into your configuration.nix and select packages from the corresponding channels. But here the channels/inputs are not part of configuration itself in contrast to when using flakes.

[–] [email protected] 0 points 9 months ago (2 children)

There's no command to just update all packages without changing the nixos version?

[–] [email protected] 1 points 9 months ago (1 children)

Update your channel & rebuild

[–] [email protected] 0 points 9 months ago (1 children)

Is that the equivalent to apt update and apt upgrade? I don't want to apt dist-upgrade lol

[–] [email protected] 2 points 9 months ago (1 children)

When not using flakes, nixos-rebuild switch --upgrade is equivalent to apt update; apt upgrade. The equivalent to dist-upgrade is nix-channel add $NEW-CHANNEL-URL nixos and then performing a regular update.

[–] [email protected] 0 points 9 months ago

Thanks. I've done switch many times after editing my config file. I've never added --upgrade!

[–] [email protected] 1 points 9 months ago (1 children)

I'm a bit confused about what you actually want? Do you just want to update your packages, but stay on the same NixOS version? Just continue like before. Do you want to stay on your current version, but use some packages from the next version? That should also be possible if you somehow include that channel in your configuration.nix (though I don't know how this would work in practice).

Personally, I just run with unstable though, then the releases aren't that important.

[–] [email protected] 0 points 9 months ago (1 children)

I think I thought unstable would mean, well, unstable. Like nightly releases or something. Would you use unstable for Firefox?

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

I think unstable and the fixed versions use the same Firefox package, so you wouldn't gain anything. The difference is rather in libraries that get used and how the distribution does things. For example, the changes listed in https://nixos.org/manual/nixos/stable/release-notes#sec-release-23.11-incompatibilities just appeared mostly one by one for me; one day, I wanted to update my system and got the error that the fonts option got renamed, so I had to change my configuration.

The fonts.fonts and fonts.enableDefaultFonts options have been renamed to fonts.packages and fonts.enableDefaultPackages respectively.

While when using a fixed point release, these changes won't happen. Only when you switch releases. That's what "unstable" refers to.

[–] [email protected] 1 points 9 months ago* (last edited 9 months ago)

You can add something like this to your config: https://stackoverflow.com/questions/48831392/how-to-add-nixos-unstable-channel-declaratively-in-configuration-nix

You just need to have it fetch the tarball for nixos 23.11 instead of nixos unstable.

[–] [email protected] 3 points 9 months ago (1 children)

You need to update your inputs so that you're using the 23.11 branch of nixpkgs instead of the old one. In my experience, a couple of things will break, but there's usually warnings about it.

[–] [email protected] 3 points 9 months ago* (last edited 9 months ago) (2 children)

Oh okay. That makes sense. I should have mentioned im using unstable as my inputs. So I assume I just need to update.

Edit: I just ran neofetch and apparently I'm already running NixOS 24.05. 👍

[–] [email protected] 5 points 9 months ago

Yeah, as a nixos-unstable user, you've been running "23.11" for the past 6 months ;)

[–] [email protected] 4 points 9 months ago

yeah if you're using unstable than it's rolling release and you just need to update regularly. the point releases shouldn't matter too much

[–] [email protected] 2 points 9 months ago (1 children)

This bug still exists (using nix-channel without name causes errors, a basic feature IMO) so watch out.

Unfortunately nix still needs work on it's UX.

[–] [email protected] 6 points 9 months ago* (last edited 9 months ago)

Yeah. The UX is not in a great state. This is not an euphemism though, I think the UX is OK for advanced users, but getting used to it takes time.

Honestly given the choice I prefer the status quo, good fundamentals and clunky UX compared to the other way around – it's all volunteer work and that's a finite resource.

[–] [email protected] 1 points 9 months ago (1 children)

Can someone please point me to a repo with a nix configuration for a desktop setup with a minimum of KDE? Bonus points for it being more like Fedora.

[–] [email protected] 7 points 9 months ago

There's an installer that makes a basic config for you where you can choose KDE as your DE.