Files
nixos/utils/default.nix
2024-06-04 20:16:08 -05:00

18 lines
370 B
Nix

{
mkMonitor = {
monitor,
resolution,
refreshRate,
wallpaper ? "default.png",
x ? 0,
y ? 0,
}:
{
${monitor} = {
mode = "${resolution}@${toString refreshRate}Hz";
pos = "${toString x} ${toString y}";
bg = "/etc/nixos/wallpapers/${wallpaper} fill";
};
};
}