mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 10:49:44 +01:00
33 lines
592 B
Nix
33 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''
|
||
|
}
|
||
|
'';
|
||
|
};
|
||
|
}
|