36 lines
787 B
Nix
36 lines
787 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./personal.nix
|
|
./games/default.nix
|
|
./streaming/default.nix
|
|
];
|
|
home.packages = with pkgs; [blender prusa-slicer];
|
|
wayland.windowManager.sway.config = {
|
|
output = {
|
|
"Microstep MSI G27CQ4 E2 Unknown" = {
|
|
mode = "2560x1440@120Hz";
|
|
scale = "1.25";
|
|
position = "1920 0";
|
|
};
|
|
"Acer Technologies ED270R TJMEE0043W01" = {
|
|
mode = "1920x1080@120Hz";
|
|
position = "0 140";
|
|
adaptive_sync = "off";
|
|
};
|
|
};
|
|
workspaceOutputAssign = [
|
|
{
|
|
output = "DP-1";
|
|
workspace = "2";
|
|
}
|
|
{
|
|
output = "DP-2";
|
|
workspace = "1";
|
|
}
|
|
];
|
|
startup = [
|
|
{command = "${pkgs.xorg.xrandr}/bin/xrandr --output DP-1 --primary";}
|
|
];
|
|
};
|
|
}
|