nixos-and-flakes-book/docs/zh/nixos-with-flakes/downgrade-or-upgrade-packages.md

135 lines
4.5 KiB
Markdown
Raw Permalink Normal View History

2023-06-30 09:00:03 +00:00
# 降级与升级软件包 {#rollback-package-version}
2023-06-23 12:29:12 +00:00
在使用 Nix Flakes 后,目前大家用得比较多的都是 `nixos-unstable` 分支的 nixpkgs有时候就会
遇到一些 bug比如我最近2023/5/6就遇到了
[chrome/vscode 闪退的问题](https://github.com/swaywm/sway/issues/7562)。
2023-06-23 12:29:12 +00:00
这时候就需要退回到之前的版本,在 Nix Flakes 中,所有的包版本与 hash 值与其 input 数据源的
git commit 是一一对应的关系,因此回退某个包的到历史版本,就需要锁定其 input 数据源的 git
commit.
2023-06-23 12:29:12 +00:00
为了实现上述需求,首先修改 `/etc/nixos/flake.nix`,示例内容如下(主要是利用 `specialArgs`
参数):
2023-06-23 12:29:12 +00:00
2023-07-08 10:31:45 +00:00
```nix{8-13,19-20,27-44}
2023-06-23 12:29:12 +00:00
{
description = "NixOS configuration of Ryan Yin"
inputs = {
# 默认使用 nixos-unstable 分支
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
2023-07-08 10:31:45 +00:00
# 最新 stable 分支的 nixpkgs用于回退个别软件包的版本
2023-12-05 02:39:10 +00:00
# 当前最新版本为 23.11
nixpkgs-stable.url = "github:nixos/nixpkgs/nixos-23.11";
2023-06-23 12:29:12 +00:00
# 另外也可以使用 git commit hash 来锁定版本,这是最彻底的锁定方式
nixpkgs-fd40cef8d.url = "github:nixos/nixpkgs/fd40cef8d797670e203a27a91e4b8e6decf0b90c";
};
outputs = inputs@{
self,
nixpkgs,
nixpkgs-stable,
nixpkgs-fd40cef8d,
...
}: {
nixosConfigurations = {
2024-02-14 08:00:16 +00:00
my-nixos = nixpkgs.lib.nixosSystem rec {
2023-06-23 12:29:12 +00:00
system = "x86_64-linux";
# 核心参数是这个,将非默认的 nixpkgs 数据源传到其他 modules 中
specialArgs = {
# 注意每次 import 都会生成一个新的 nixpkgs 实例
# 这里我们直接在 flake.nix 中创建实例, 再传递到其他子 modules 中使用
# 这样能有效重用 nixpkgs 实例,避免 nixpkgs 实例泛滥。
pkgs-stable = import nixpkgs-stable {
2023-07-08 10:31:45 +00:00
# 这里递归引用了外部的 system 属性
2024-03-16 04:56:21 +00:00
inherit system;
2023-07-08 10:31:45 +00:00
# 为了拉取 chrome 等软件包,
# 这里我们需要允许安装非自由软件
2023-06-23 12:29:12 +00:00
config.allowUnfree = true;
};
pkgs-fd40cef8d = import nixpkgs-fd40cef8d {
2024-03-16 04:56:21 +00:00
inherit system;
2023-06-23 12:29:12 +00:00
config.allowUnfree = true;
};
};
modules = [
2024-02-14 08:00:16 +00:00
./hosts/my-nixos
2023-06-23 12:29:12 +00:00
# 省略其他模块配置...
];
};
};
};
}
```
然后在你对应的 module 中使用该数据源中的包,一个 Home Manager 的子模块示例:
2023-07-08 10:31:45 +00:00
```nix{4-7,13,25}
2023-06-23 12:29:12 +00:00
{
pkgs,
config,
2023-07-08 10:31:45 +00:00
2023-06-23 12:29:12 +00:00
# nix 会从 flake.nix 的 specialArgs 查找并注入此参数
pkgs-stable,
# pkgs-fd40cef8d, # 也可以使用固定 hash 的 nixpkgs 数据源
...
}:
{
2023-07-08 10:31:45 +00:00
# # 这里从 pkg-stable 中引用包(而不是默认的 pkgs
2023-06-23 12:29:12 +00:00
home.packages = with pkgs-stable; [
firefox-wayland
2023-07-08 10:31:45 +00:00
# nixos-unstable 分支中的 Chrome Wayland 支持目前存在问题,
# 因此这里我们将 google-chrome 回滚到 stable 分支,临时解决下 bug.
# 相关 Issue: https://github.com/swaywm/sway/issues/7562
2023-06-23 12:29:12 +00:00
google-chrome
];
programs.vscode = {
enable = true;
2023-07-08 10:31:45 +00:00
# 这里也一样,从 pkgs-stable 中引用包
package = pkgs-stable.vscode;
2023-06-23 12:29:12 +00:00
};
}
```
## 使用 Overlay 锁定软件包版本
上面介绍的方法非常适合用于普通的应用程序Application但有时候你可能会需要替换一些被这
些应用程序依赖的库Library。这时候就需要用到 [Overlays](../nixpkgs/overlays.md) 了!我
们可以通过 Overlay 来修改某个库的版本,这会导致 Nix 重新编译所有依赖于该库的软件包,但在锁
定一些比较底层的库版本时,这是一个非常好的方法。
示例如下:
```nix
# overlays/mesa.nix
{ config, pkgs, lib, pkgs-fd40cef8d, ... }:
{
nixpkgs.overlays = [
# Overlay: Use `self` and `super` to express
# the inheritance relationship
(self: super: {
mesa = pkgs-fd40cef8d.mesa;
})
];
}
```
## 部署新配置
配置完成后,通过 `sudo nixos-rebuild switch` 部署即可将 firefox/chrome/vscode 三个软件包回
退到 stable 分支的版本。
2023-06-23 12:29:12 +00:00
> 根据 @fbewivpjsbsby 补充的文章
> [1000 instances of nixpkgs](https://discourse.nixos.org/t/1000-instances-of-nixpkgs/17347)
> 在子模块或者子 flakes 中用 `import` 来定制 `nixpkgs` 不是一个好的习惯,因为每次 `import`
> 都会重新求值并产生一个新的 nixpkgs 实例,在配置越来越多时会导致构建时间变长、内存占用变
> 大。所以这里改为了在 `flake.nix` 中创建所有 nixpkgs 实例。