search
HomeSystem TutorialLINUXNixOS: The perfect Linux distribution?

NixOS: The perfect Linux distribution?

Feb 12, 2024 pm 09:39 PM
linuxlinux tutoriallinux systemlinux commandshell scriptoverflowembeddedlinuxGetting started with linuxlinux learning

When it comes to Linux distributions, the first thing that comes to mind may be Ubuntu, Debian or Fedora, etc., but today I want to introduce to you an unusual Linux distribution-NixOS.

NixOS is an exciting distribution. Let’s take a look at why you might want to give it a try.

NixOS…another distro using a different package manager? 🤯

OK, NixOS is one of the premium Linux distributions.

So if I’m writing this, I must have a pretty solid reason, right? Well, there are many!

I've been using it for 3 months now and it's so good that I'm considering switching to NixOS from my all-time favorite Pop!_OS.

In this guide, I will share the key features of NixOS that make it stand out from the crowd of Linux distributions.

NixOS:完美的 Linux 发行版?

Don’t worry; before we continue, let me tell you what NixOS is:

It is a Linux distribution with the Nix package manager at its core, saving you the trouble of setting up on different Linux distributions and letting you get the most out of Nix. Built by the same team that developed Nix.

6 reasons to use NixOS

NixOS is a fun standalone Linux distribution built from the ground up.

Everyone can learn a lot by using NixOS, but in my opinion, if you are a developer or a computer science student, NixOS should be a good fit.

Let me tell you why.

NixOS:完美的 Linux 发行版?

1. Hard to break/easy to repair

NixOS is built on durability.

This doesn't mean it ships with packages for stability for years like Debian does, but it takes a different approach.

To understand why NixOS is so stable, let's talk about how users typically break their systems, namely "Dependency issues or package conflicts"

When updating your system or installing new packages, you often experience severe system crashes. Mainly because your package manager cannot satisfy the dependencies or the installed package conflicts with the existing system.

NixOS has a very clever way of handling this problem.

See, whenever you upgrade the system or install a package, the system state is rebuilt , called the current " new generation".

So if you encounter any problems with new packages or updates, you can always roll back to the old generation where you will find the previous state of your system.

Even if the system is inaccessible, you will find previous generations available on boot.

2. Reproducibility

Using a configuration file, you can create copies of the current environment for other physical systems.

To benefit from this feature, you can install and configure it using Nix configuration files.

Once you have a config file that suits your purposes, send that file to a fresh installation and replace the default config file with yours. It's that simple!

Rebuild the configuration, upgrade the system, and switch via the given commands:

sudo nixos-rebuild switch --upgrade

You will have a copy of the development environment you have on your host machine in just a few minutes.

Related: NixOS 22.05 released, independently developed GNU/Linux https://www.linuxmi.com/nixos-22-05.html

NixOS:完美的 Linux 发行版?

3. Easy rollback

While you may have gotten inspiration from NixOS’s “Generations” feature.

there are more. 🕵️

NixOS relies heavily on symlinks (always). If this is a new concept to you, please refer to the following guide:

How to create symbolic links in Linux [Complete Guide] https://www.linuxmi.com/creating-symbolic-links-in-linux.html

Typically, with other Linux distributions, when you upgrade a package, the new package replaces the old package.

But this is not the case with NixOS.

In NixOS, packages are isolated and stored in a unique directory, which is where symbolic links are used.

Whenever you upgrade a package, NixOS will adjust the symbolic links to locate the new package, but will not remove the old package .

So if you encounter a conflict with a new package, just switch to the old generation, symlinks will help find the old version of the package. 😌

4.Nix Package Manager

Nix Package Manager gives you access to over 80,000 packages! Not just limited to Linux; it also works on macOS, WSL2, Docker, and more platforms.

Package availability is similar or even better than the AUR, as you should find almost everything on the Nix package manager.

For example, I want to install the Librewolf browser, which is not available in the default repositories of most Linux distributions.

But Nix does! This means that almost every package can depend on the Nix package manager.

It's also relatively easy to understand if you have previous Linux experience. In short, the Nix package manager is impressive!

5. Use multiple versions of the same package

This is critical for developers because some applications require older versions of specific dependencies, while some require the latest versions.

As I mentioned before, nix installs packages into specific subdirectories, and each package is isolated so they don't interfere with each other!

Before using Nix, I used VMs and containers for different dependencies of the same package, especially PHP, but NixOS has done wonders for my workflow.

6. Test the package without installation

You can use nix-shell, which will temporarily modify the $PATH environment variable and be used to temporarily test the package.

And there is no limit. You can test every package available for installation!

NixOS Series: Let’s explore more!

This is the first part of our Nix series, in which I cover the reasons for using NixOS. I believe more Linux users should start learning about it, if you don't already know it.

In short, NixOS has become a Linux distribution that has attracted much attention with its unique features and advantages. Whether you are a Linux newbie or a veteran, you can try this system, maybe it will bring you a different experience.

The above is the detailed content of NixOS: The perfect Linux distribution?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:良许Linux教程网. If there is any infringement, please contact admin@php.cn delete
What are the main tasks of a Linux system administrator?What are the main tasks of a Linux system administrator?Apr 19, 2025 am 12:23 AM

The main tasks of Linux system administrators include system monitoring and performance tuning, user management, software package management, security management and backup, troubleshooting and resolution, performance optimization and best practices. 1. Use top, htop and other tools to monitor system performance and tune it. 2. Manage user accounts and permissions through useradd commands and other commands. 3. Use apt and yum to manage software packages to ensure system updates and security. 4. Configure a firewall, monitor logs, and perform data backup to ensure system security. 5. Troubleshoot and resolve through log analysis and tool use. 6. Optimize kernel parameters and application configuration, and follow best practices to improve system performance and stability.

Is it hard to learn Linux?Is it hard to learn Linux?Apr 18, 2025 am 12:23 AM

Learning Linux is not difficult. 1.Linux is an open source operating system based on Unix and is widely used in servers, embedded systems and personal computers. 2. Understanding file system and permission management is the key. The file system is hierarchical, and permissions include reading, writing and execution. 3. Package management systems such as apt and dnf make software management convenient. 4. Process management is implemented through ps and top commands. 5. Start learning from basic commands such as mkdir, cd, touch and nano, and then try advanced usage such as shell scripts and text processing. 6. Common errors such as permission problems can be solved through sudo and chmod. 7. Performance optimization suggestions include using htop to monitor resources, cleaning unnecessary files, and using sy

What is the salary of Linux administrator?What is the salary of Linux administrator?Apr 17, 2025 am 12:24 AM

The average annual salary of Linux administrators is $75,000 to $95,000 in the United States and €40,000 to €60,000 in Europe. To increase salary, you can: 1. Continuously learn new technologies, such as cloud computing and container technology; 2. Accumulate project experience and establish Portfolio; 3. Establish a professional network and expand your network.

What is the main purpose of Linux?What is the main purpose of Linux?Apr 16, 2025 am 12:19 AM

The main uses of Linux include: 1. Server operating system, 2. Embedded system, 3. Desktop operating system, 4. Development and testing environment. Linux excels in these areas, providing stability, security and efficient development tools.

Does the internet run on Linux?Does the internet run on Linux?Apr 14, 2025 am 12:03 AM

The Internet does not rely on a single operating system, but Linux plays an important role in it. Linux is widely used in servers and network devices and is popular for its stability, security and scalability.

What are Linux operations?What are Linux operations?Apr 13, 2025 am 12:20 AM

The core of the Linux operating system is its command line interface, which can perform various operations through the command line. 1. File and directory operations use ls, cd, mkdir, rm and other commands to manage files and directories. 2. User and permission management ensures system security and resource allocation through useradd, passwd, chmod and other commands. 3. Process management uses ps, kill and other commands to monitor and control system processes. 4. Network operations include ping, ifconfig, ssh and other commands to configure and manage network connections. 5. System monitoring and maintenance use commands such as top, df, du to understand the system's operating status and resource usage.

Boost Productivity with Custom Command Shortcuts Using Linux AliasesBoost Productivity with Custom Command Shortcuts Using Linux AliasesApr 12, 2025 am 11:43 AM

Introduction Linux is a powerful operating system favored by developers, system administrators, and power users due to its flexibility and efficiency. However, frequently using long and complex commands can be tedious and er

What is Linux actually good for?What is Linux actually good for?Apr 12, 2025 am 12:20 AM

Linux is suitable for servers, development environments, and embedded systems. 1. As a server operating system, Linux is stable and efficient, and is often used to deploy high-concurrency applications. 2. As a development environment, Linux provides efficient command line tools and package management systems to improve development efficiency. 3. In embedded systems, Linux is lightweight and customizable, suitable for environments with limited resources.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools