nix/modules/home-manager/dragon.nix

53 lines
1 KiB
Nix
Raw Normal View History

2023-10-06 00:49:19 -05:00
{
2023-10-08 02:46:37 -05:00
config,
2023-10-06 00:49:19 -05:00
lib,
outputs,
...
}: {
imports = with outputs.homeManagerModules; [
2023-10-08 02:46:37 -05:00
melee
2023-10-06 00:49:19 -05:00
sway
];
wayland.windowManager.sway = {
config = {
output = {
"GIGA-BYTE TECHNOLOGY CO., LTD. AORUS FO48U 23070B000307" = {
mode = "3840x2160@120Hz";
};
"Dell Inc. DELL U2720Q D3TM623" = {
# desktop left vertical monitor
mode = "3840x2160@60Hz";
transform = "90";
scale = "1.5";
};
};
workspaceOutputAssign =
(
map
(ws: {
output = "GIGA-BYTE TECHNOLOGY CO., LTD. AORUS FO48U 23070B000307";
workspace = toString ws;
})
(lib.range 1 7)
)
++ (
map
(ws: {
output = "Dell Inc. DELL U2720Q D3TM623";
workspace = toString ws;
})
(lib.range 8 9)
);
};
};
2023-10-08 02:46:37 -05:00
ssbm = {
slippi-launcher = {
isoPath = "${config.home.homeDirectory}/../games/roms/dolphin/melee.iso";
};
};
2023-10-06 00:49:19 -05:00
}