aboutsummaryrefslogblamecommitdiffstats
path: root/home/sadbeast/joshua.nix
blob: f41f96dd62dae45f3ccee1503db51cb3f6cd8c5a (plain) (tree)


























                                              
{
  pkgs,
  config,
  lib,
  ...
}: {
  imports = [
    ./global
    ./features/desktop
    ./features/games.nix
  ];

  #  ----------   ---------
  # | HDMI-A-1 | | DVI-D-1 |
  #  ----------   ---------

  wayland.windowManager.sway.config.output = {
    HDMI-A-1 = {
      resolution = "1920x1080";
      position = "0,0";
    };
    DVI-D-1 = {
      resolution = "1920x1080";
      position = "1920,0";
    };
  };
}