this post was submitted on 29 Jul 2025
36 points (97.4% liked)

Linux

56926 readers
486 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 6 years ago
MODERATORS
 

20+ years ago, Lindows had a great app store that let you create an "aisle" of your favorite apps so if/when you'd reinstall your OS, instead of searching and installing all your apps one-by-one, you'd just go to your aisle, click "install all" and boom.

Is there anything that exists like that today?

you are viewing a single comment's thread
view the rest of the comments
[–] Shareni@programming.dev 5 points 4 days ago (1 children)

Sure, but then you need to maintain it. I don't know about you, but I never had the discipline to update it with every package install and uninstall. It's especially annoying when you have multiple devices.

Declarative package management doesn't have that issue since you're managing the packages by editing the list.

Besides that, the home-manager approach works on any distro (and os?), you get bleeding edge packages, you get a built in rollback system, and you can handle configs as well (but I mainly just symlink them anyways).

[–] Auth@lemmy.world 5 points 4 days ago (1 children)

You can write a script to periodically check the installed packages and update the 1st script. Its basically the output of "dnf list installed"

[–] Shareni@programming.dev 4 points 4 days ago

/facepalm moment for not thinking of that at the time

But it's lacking organisation and modularity. For example let's say you need programming packages on one device, gaming ones on another, and general ones on both. It's pretty easy to set it up with hm, and you can disable specific modules when you don't need them (for example you rarely need to use a certain language and supporting packages).