This repository has been archived on 2024-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
home-manager/home/Vanguard.nix

53 lines
1.1 KiB
Nix
Raw Permalink Normal View History

{
config,
pkgs,
...
}: {
2024-05-21 22:12:02 +01:00
imports = [
./default.nix
../programs/games/default.nix
];
home.packages = with pkgs; [
blender
freecad
prusa-slicer
];
wayland.windowManager.sway.config = {
output = {
"Acer Technologies ED270R TJMEE0043W01" = {
mode = "1920x1080@165Hz";
position = "1080 420";
adaptive_sync = "off";
};
"Ancor Communications Inc VS278 FALMQS032358" = {
position = "0 0";
transform = "270";
};
};
workspaceOutputAssign = [
{
output = "HDMI-A-1";
workspace = "1";
}
{
output = "DP-2";
workspace = "2";
}
];
startup = [
{command = "${pkgs.xorg.xrandr}/bin/xrandr --output DP-2 --primary";}
];
};
programs.waybar.settings = {
main.output = ["DP-2"];
alt = {
inherit (config.programs.waybar.settings.main) layer position "sway/workspaces" "sway/window" "clock";
name = "alt";
output = ["HDMI-A-1"];
"modules-left" = ["sway/workspaces" "sway/window"];
2024-06-15 09:59:00 +01:00
"modules-center" = [];
"modules-right" = ["clock"];
};
};
}