this post was submitted on 29 Nov 2023
156 points (99.4% liked)

Linux

47300 readers
505 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
you are viewing a single comment's thread
view the rest of the comments
[–] lambda@programming.dev 0 points 9 months ago (10 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

[–] trillian@feddit.de 3 points 9 months ago (8 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.

[–] lambda@programming.dev 0 points 9 months ago (7 children)

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

[–] Makussu@feddit.de 1 points 9 months ago (1 children)

Update your channel & rebuild

[–] lambda@programming.dev 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

[–] Laser@feddit.de 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.

[–] lambda@programming.dev 0 points 9 months ago

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

load more comments (5 replies)
load more comments (5 replies)
load more comments (6 replies)