nixos-and-flakes-book/docs/zh/nixos-with-flakes/other-useful-tips.md

105 lines
3.8 KiB
Markdown
Raw Normal View History

2023-06-30 11:00:03 +02:00
# NixOS 的其他实用技巧
2023-06-23 14:29:12 +02:00
2024-01-23 02:48:55 +01:00
## 查看详细错误信息
如果你在部署配置时遇到了任何错误,都可以尝试在 `nixos-rebuild` 命令后面添加 `--show-trace -L` 参数来获取详细的错误信息。举例如下:
```bash
cd /etc/nixos
sudo nixos-rebuild switch --flake .#myhost --show-trace -L
```
2023-06-23 16:41:34 +02:00
## 使用 Git 管理 NixOS 配置 {#git-manage-nixos-config}
2023-06-23 14:29:12 +02:00
NixOS 的配置文件是纯文本,因此跟普通的 dotfiles 一样可以使用 Git 管理,这样可以方便的回滚到历史版本,或者在多台机器上同步配置。
2024-01-11 04:06:59 +01:00
> 注意:使用 Git 后,所有未被 Git 跟踪的文件都会被 Nix 忽略,如果发现 Nix 报错说某某文件 not found或许是因为你没 `git add` 它
2023-12-16 13:54:35 +01:00
另外一点是Nix Flakes 配置也不一定需要放在 `/etc/nixos` 目录下,可以放在任意目录下,只要在部署时指定正确的路径即可。
2023-06-23 14:29:12 +02:00
> 我们在前面第 3 小节的代码注释中有说明过,可以通过 `sudo nixos-rebuild switch --flake .#xxx` 的 `--flake` 参数指定 Flakes 配置的文件夹路径,并通过 `#` 后面的值来指定使用的 outputs 名称。
比如我的使用方式是将 Nix Flakes 配置放在 `~/nixos-config` 目录下,然后在 `/etc/nixos` 目录下创建一个软链接:
```shell
sudo mv /etc/nixos /etc/nixos.bak # 备份原来的配置
sudo ln -s ~/nixos-config/ /etc/nixos
```
然后就可以在 `~/nixos-config` 目录下使用 Git 管理配置了,配置使用普通的用户级别权限即可,不要求 owner 为 root.
另一种方法是直接删除掉 `/etc/nixos`,并在每次部署时指定配置文件路径:
```shell
sudo mv /etc/nixos /etc/nixos.bak # 备份原来的配置
cd ~/nixos-config
2023-07-08 12:31:45 +02:00
# 通过 --flake .#nixos-test 参数指定使用当前文件夹的 flake.nix
# 使用的 nixosConfiguraitons 名称为 nixos-test
2023-06-23 14:29:12 +02:00
sudo nixos-rebuild switch --flake .#nixos-test
```
两种方式都可以,看个人喜好。搞定之后,系统的回滚也变得非常简单,只需要切换到上一个 commit 即可:
```shell
cd ~/nixos-config
# 回滚到上一个 commit
git checkout HEAD^1
# 部署
sudo nixos-rebuild switch --flake .#nixos-test
```
Git 的更多操作这里就不介绍了,总之一般情况下的回滚都能直接通过 Git 完成,只在系统完全崩溃的情况下,才需要通过重启进入 grub从上一个历史版本启动系统。
2023-06-23 16:41:34 +02:00
## 查看与清理历史数据 {#view-and-delete-history}
2023-06-23 14:29:12 +02:00
如前所述NixOS 的每次部署都会生成一个新的版本,所有版本都会被添加到系统启动项中,除了重启电脑外,我们也可以通过如下命令查询当前可用的所有历史版本:
```shell
nix profile history --profile /nix/var/nix/profiles/system
```
以及清理历史版本释放存储空间的命令:
```shell
# 清理 7 天之前的所有历史版本
2023-07-08 12:31:45 +02:00
sudo nix profile wipe-history --older-than 7d --profile /nix/var/nix/profiles/system
2023-06-23 14:29:12 +02:00
# 清理历史版本并不会删除数据,还需要手动 gc 下
sudo nix store gc --debug
```
以及查看系统层面安装的所有软件包(这个貌似只能用 `nix-env`
```shell
nix-env -qa
```
2023-06-23 17:53:25 +02:00
2023-06-30 11:00:03 +02:00
# 节约存储空间
2023-06-23 17:53:25 +02:00
2023-06-23 17:54:50 +02:00
如下配置可以比较好的缩减 NixOS 的磁盘占用,可以考虑将它们添加到你的 NixOS 配置中:
2023-06-23 17:53:25 +02:00
```nix
{ lib, pkgs, ... }:
{
# ......
# do not need to keep too much generations
2023-06-23 17:54:50 +02:00
boot.loader.systemd-boot.configurationLimit = 10;
2023-06-23 17:53:25 +02:00
# boot.loader.grub.configurationLimit = 10;
# do garbage collection weekly to keep disk usage low
nix.gc = {
2023-06-23 17:54:50 +02:00
automatic = true;
dates = "weekly";
options = "--delete-older-than 1w";
2023-06-23 17:53:25 +02:00
};
# Optimise storage
# you can alse optimise the store manually via:
# nix-store --optimise
# https://nixos.org/manual/nix/stable/command-ref/conf-file.html#conf-auto-optimise-store
nix.settings.auto-optimise-store = true;
}
```