depot/third_party/home-manager/tests/modules/programs/autorandr/scale.nix
Default email cfcd52ff70 Project import generated by Copybara.
GitOrigin-RevId: 70c5b268e10025c70823767f4fb49e240b40151d
2021-11-05 00:42:44 +08:00

34 lines
625 B
Nix

{ config, pkgs, ... }:
{
config = {
programs.autorandr = {
enable = true;
profiles = {
default = {
fingerprint.DP1 = "XXX";
config.DP1 = {
scale = {
x = 2;
y = 4;
};
};
};
};
};
test.stubs.autorandr = { };
nmt.script = ''
config=home-files/.config/autorandr/default/config
assertFileExists $config
assertFileContent $config \
${
pkgs.writeText "scale-expected.conf" ''
output DP1
scale 2x4''
}
'';
};
}