1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/programs/autorandr/basic-configuration.nix
Kylie McClain 970b57fd3c
autorandr: add filter option (#2795)
xrandr's filter option is useful for enabling integer scaling on
displays that don't have support for it at a graphics card level.
2022-03-17 13:45:04 +01:00

60 lines
1.4 KiB
Nix

{ config, pkgs, ... }:
{
config = {
programs.autorandr = {
enable = true;
profiles = {
default = {
fingerprint = {
DP1 = "XXX";
DP2 = "YYY";
};
config = {
DP1.enable = false;
DP2 = {
crtc = 0;
primary = true;
position = "0x0";
mode = "1920x1080";
filter = "nearest";
transform = [
[ 0.6 0.0 0.0 ] # a b c
[ 0.0 0.6 0.0 ] # d e f
[ 0.0 0.0 1.0 ] # g h i
];
};
};
};
};
};
test.stubs.autorandr = { };
nmt.script = ''
config=home-files/.config/autorandr/default/config
setup=home-files/.config/autorandr/default/setup
assertFileExists $setup
assertFileRegex $setup 'DP1 XXX'
assertFileRegex $setup 'DP2 YYY'
assertFileExists $config
assertFileContent $config \
${
pkgs.writeText "basic-configuration.conf" ''
output DP1
off
output DP2
pos 0x0
crtc 0
primary
mode 1920x1080
filter nearest
transform 0.600000,0.000000,0.000000,0.000000,0.600000,0.000000,0.000000,0.000000,1.000000''
}
'';
};
}