75fa0ae5af
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
13 lines
307 B
Nix
13 lines
307 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.i3status-rust = { enable = true; };
|
|
|
|
test.stubs.i3status-rust = { version = "0.31.1"; };
|
|
|
|
test.asserts.assertions.expected = [
|
|
"Only i3status-rust <0.31.0 or ≥0.31.2 is supported due to a config format incompatibility."
|
|
];
|
|
};
|
|
}
|