mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 16:59:43 +01:00
14 lines
307 B
Nix
14 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."
|
||
|
];
|
||
|
};
|
||
|
}
|