transifere configuracion de monitores a plataform

This commit is contained in:
Fabián Montero 2022-11-29 18:16:50 -06:00
parent d2ff948cd8
commit d00d673425
4 changed files with 48 additions and 12 deletions

View file

@ -59,11 +59,6 @@ with lib;
command = "${pkgs.networkmanagerapplet}/bin/nm-applet";
notification = false;
}
{
command = "${pkgs.xorg.xrandr}/bin/xrandr --output DisplayPort-0 --primary --mode 1920x1080 --rate 143.85 --pos 0x0 --rotate normal --output DisplayPort-1 --mode 1920x1080 --rate 59.94 --pos 1920x0 --rotate normal --output HDMI-A-0 --off --output HDMI-A-1 --off --output DVI-D-0 --off";
notification = false;
always = true;
}
{
command = "${pkgs.feh}/bin/feh --bg-scale ${config.home.homeDirectory}/Pictures/wallpapers/carina_jwst.jpg";
notification = false;

8
home/gui/randr.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, lib, ... } :
with lib;
{
programs.autorandr = {
enable = true;
profiles."${config.local.platform}" = config.local.display.autorandrProfile;
}
}