2024-01-05 11:06:15 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
expected = pkgs.writeText "rio-expected.toml" ''
|
|
|
|
cursor = "_"
|
|
|
|
padding-x = 0
|
|
|
|
performance = "Low"
|
|
|
|
'';
|
|
|
|
in {
|
|
|
|
programs.rio = {
|
|
|
|
enable = true;
|
|
|
|
package = config.lib.test.mkStubPackage { };
|
|
|
|
|
|
|
|
settings = {
|
|
|
|
cursor = "_";
|
|
|
|
performance = "Low";
|
|
|
|
padding-x = 0;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
nmt.script = ''
|
2024-06-04 18:23:39 +00:00
|
|
|
assertFileExists home-files/.config/rio/config.toml
|
|
|
|
assertFileContent home-files/.config/rio/config.toml '${expected}'
|
2024-01-05 11:06:15 +00:00
|
|
|
'';
|
|
|
|
}
|