this post was submitted on 03 Jul 2025
180 points (96.4% liked)

Linux

56329 readers
894 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
(page 2) 50 comments
sorted by: hot top controversial new old
[–] iopq@lemmy.world 2 points 1 week ago (1 children)

If you download a binary you can just steam-run it and it just works

[–] smiletolerantly@awful.systems 1 points 1 week ago (1 children)
[–] SolarBoy@slrpnk.net 2 points 1 week ago (1 children)

This command will just run an executable file on nix. Normally only executables which are installed from the package manager will work.

appimage-run is another option. Which can be used to run, you guessed it, appimages

[–] iopq@lemmy.world 1 points 1 week ago (1 children)

But appimages will complain about unmet dependencies, so usually they don't work

load more comments (1 replies)
[–] elucubra@sopuli.xyz 2 points 1 week ago

For rollbacks, I've been using Timeshift in Mint, and it has worked brilliantly.

[–] LeFantome@programming.dev 2 points 1 week ago

I have not used Nix, so I may not know what I am talking about.

That said, I have been using Chimera Linux which uses the APK package manager. It works by maintaining a single file in /etc/apk/world that specifies all the packages the user wants on the system. This is used to calculate dependencies and install packages. When you “add” and “del” packages, all it is really doing is adding and removing from this list. If you remove a package, it will remove all the dependencies too unless they appear in the “world” file.

If you do not specify a version number for a package, you get the latest. But you can pin versions of you want.

If you copy the world file from one system to another, you get the same set of installed packages.

So, if I use git to backup my world file, maybe a couple of other entries in /etc, and the dot files in my home directory, I have pretty much everything I need to completely recreate my system.

Is it really worth all the extra complexity of Nix?

[–] elucubra@sopuli.xyz 1 points 1 week ago (2 children)

I wonder why nobody has created a simple gui for Nixconfig.

[–] ch8zer@lemmy.ca 1 points 1 week ago

Something like this is really hard to make a gui for. I suppose a GUI would only be useful for discovering config values?

Either way, a gui would likely look like YAST on OpenSuse.

[–] frozencow@lemmy.world 1 points 1 week ago (1 children)

Someone has done just that: https://github.com/snowfallorg/nixos-conf-editor It is part of https://snowflakeos.org/, though I don't know about its developments atm.

[–] iopq@lemmy.world 2 points 1 week ago

It's less simple than text because it actually takes more space to view the same amount of configs.

load more comments
view more: ‹ prev next ›