this post was submitted on 09 Apr 2024
296 points (98.7% liked)
Linux
48074 readers
720 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
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
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
view the rest of the comments
What you think about Declarative system management.Do u use it?
Not sure what that is. Plesse explain more.
Like in Nix.
U write whole system config in a file or few (including grub,ssh,etc) then rebuild system and u have a system based on that config. There are projects for arch like blendos (the alpha release)
It is pretty great, but for now they are still mainly aimed at power users. I have used home manager for a bit, but I feel some module are not exactly well maintained, and using it is not exactly "maintenance-free". BTW, they pollute your hone dir like crazy, as if xdg has never existed.
I feel like nix is aimed as ease of deployment, but not the ease of maintenance especially for desktop use. However, I love atomic distros, they are on the part of the spectrum, you cannot replicate your setup exactly by copying a dir, but they are very easy to use, with sane default.
I like it as a concept, but it gets bothersome to maintain on the long run, sometimes you just want to install something not write configs.
I think Gentoo has a nice middle ground, where you can install packages as a one-off without adding them to the world file, which makes it very meat to maintain both your regular packages and some random things you're trying out before settling in on adding them permanently.
That being said I'm currently looking into writing some ansible for kick-starting machines, so I'm very much moving in that direction. Why not use nix then? Few reasons:
Nix has an ephemeral command to "install" packages to try out before installing permanently.
nix-shell -p <package>
will install the package, and drop you into an ephemeral shell to test it out. Exit the shell and it's gone.It's also possible to install permanently straight from the CLI, but that ruins composability. To each his own.
My bigger problem w nix is the lack of FHS and the hoops you have to jump thru to get a non standard app to work.