mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
ef4370bedc
By default tests are expected to produce no assertion. This also updates the existing tests to match.
32 lines
592 B
Nix
32 lines
592 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
config = {
|
|
programs.autorandr = {
|
|
enable = true;
|
|
profiles = {
|
|
default = {
|
|
fingerprint.DP1 = "XXX";
|
|
config.DP1 = {
|
|
scale = {
|
|
x = 2;
|
|
y = 4;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
nmt.script = ''
|
|
config=home-files/.config/autorandr/default/config
|
|
|
|
assertFileExists $config
|
|
assertFileContent $config \
|
|
${
|
|
pkgs.writeText "scale-expected.conf" ''
|
|
output DP1
|
|
scale 2x4''
|
|
}
|
|
'';
|
|
};
|
|
}
|