this post was submitted on 18 Mar 2024
46 points (100.0% liked)
libre
9656 readers
4 users here now
Welcome to libre
A comm dedicated to the fight for free software with an anti-capitalist perspective.
The struggle for libre computing cannot be disentangled from other forms of socialist reform. One must be willing to reject proprietary software as fiercely as they would reject capitalism. Luckily, we are not alone.
Resources
- Free Software, Free Society provides an excellent primer in the origins and theory around free software and the GNU Project, the pioneers of the Free Software Movement.
- Switch to GNU/Linux! If you're still using Windows in
$CURRENT_YEAR
, flock to Linux Mint!; Apple Silicon users will want to check out Asahi Linux. - Social Media Recommendations:
- The Linux Experiment: Weekly news host for Linux/libre software related news.
- Nicco Loves Linux: Developer for KDE who makes interesting videos.
- David Revoy: An incredible artist with a cool webcomic, all done with GNU/Linux.
- Michael Horn: Makes videos about his various experiences with Linux.
Rules
- Be on topic: Posts should be about free software and other hacktivst struggles. Topics about general tech news should be in the technology comm or programming comm.
- Avoid using misleading terms/speading misinformation: Here's a great article about what those words are. In short, try to avoid parroting common Techbro lingo and topics.
- Avoid being confrontational: People are in different stages of liberating their computing, focus on informing rather than accusing. Debatebro nonsense is not tolerated.
- All site-wide rules still apply
Artwork
- Xenia was meant to be an alternative to Tux and was created (licensed under CC0) by Alan Mackey in 1996.
- Comm icon (of Xenia the Linux mascot) was originally created by @ioletsgo
- Comm banner is a close up of "Dorlotons Degooglisons" by David Revoy (CC-BY 4.0) for Framasoft
founded 3 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Official NixOS LiveCD has calamares, so that part is already figured out.
I think distributing a pre-configured system can be beneficial for people who don't want a bare system while they are still learning, but then there's the question of people already having different configs, if we are talking about people coming from other distros.
As I saw (and written), NixOS users tend to design a config in a way that it can be extended with new machines easily and with little code in flake.nix (even if this is utterly useless, like for me, since the devices in use don't change) and installed on a new machine, ZaneyOS demonstrates this well. I quess if a person wants to try Nix out they can install someone else's NixOS and then change it for themselves?
I think the distributed configuration will need a guide on how to change it before installation (where the dotfiles go, hardware side and partitions).
What about making a home manager config? Much less commitment needed than installing a whole new OS. And HM provides options geared for user's environment, so the user can change what matters to them the most at the current moment (while they are learning) - what they interact with.
P.S: since you are trying Nix out, state data control might interest you, since you can boil the system down to its configuration and a directory with all of the worthy-of-saving state. Also, home manager, of course.
Yeah, I installed nix to a vm with the live installer. It detects all the hardware and you don't have to mess with it after install (except for maybe nvidia cards). You would only need to point people to some nix config files to download. ZaneyOS is set up to where you just download the git repository and edit a couple lines in settings.nix to add your username and github info, and everything else is taken care of on rebuild.
The default drive setup is usable, but can be fine-tuned and automated with disko from what I've seen.
I would hesitate to try and install it as a dual boot along-side windows, but If you have an old laptop or something lying around it could be useful for setting up a usable linux install to try out while having usefull services ready to go, like steam, jellyfin and sonarr with minimal fussing around with the config. Flakes and home manager don't seem all that necessary if the goal is to just have some good default programs up and running after install. They become more necessary if you want custom home directory layout with non-default config files and exact software version control.
Seems like it would be easier than trying to install the nix package manager with home-manager on a different distro like mint, but I haven't tried to do that and I'm pretty new to the whole thing. If it's easier, then having a custom home.nix or something like that shouldn't be to hard.
The whole impermenance thing is intriguing. I'm going to dive into that after learning more about home-manager and flakes.
Seconding that a home-manager setup is probably an easier sell for people already running some kind of Linux.
Also wanted to add that you can make a bootable iso pretty easily too so people could test drive without even committing to a dual boot or install.
https://m.youtube.com/watch?si=WqjLuFj-TXuUTXZK&v=-G8mN6HJSZE&feature=youtu.be
I haven't tried it personally so maybe it's more of a pain than he makes it look.
Well, I'm setting up home manager and tweaking things for a custom terminal prompt (currently just bash+starship+lsd). I found https://home-manager-options.extranix.com which has a searchable list of all the options and programs it can manage, so I'm just going through and tweaking things here and there. It's a bit more involved than just throwing together a list of programs, but it makes setting everything up a breeze. If and when I'm done I'll try reproducing it on different VM installs to see how easy it is to clone, and then maybe make a post here sharing it if any one is interested.
And I just tried the iso.nix thing, and it does indeed make a bootable iso from your install. I only quickly booted it up in a vm, so I don't know how tweakable it is, but it seemed to work.
Neat! I've got to get around to fiddling with home-manager and flakes still myself.