46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../../home/work.nix
|
|
../../home/gui
|
|
../../home/desktop/swayfx.nix
|
|
];
|
|
home.username = "elitherl";
|
|
home.homeDirectory = "/home/elitherl";
|
|
home.stateVersion = "22.11";
|
|
home.packages = with pkgs; [
|
|
zotero
|
|
openfortivpn
|
|
nomachine-client
|
|
teams-for-linux
|
|
zoom-us
|
|
];
|
|
programs.firefox.package = pkgs.firefox-wayland;
|
|
|
|
wayland.windowManager.sway.config = {
|
|
output = {
|
|
# eDP-1 = {};
|
|
# "Iiyama North America PLB2403WS 0574281251316" = {};
|
|
"Dell Inc. DELL U2417H 5K9YD872FY1L".transform = "270";
|
|
};
|
|
workspaceOutputAssign = [
|
|
{output="Iiyama North America PLB2403WS 0574281251316"; workspace="1";}
|
|
{output="Iiyama North America PLB2403WS 0574281251316"; workspace="2";}
|
|
{output="Iiyama North America PLB2403WS 0574281251316"; workspace="3";}
|
|
{output="Iiyama North America PLB2403WS 0574281251316"; workspace="4";}
|
|
];
|
|
};
|
|
programs.waybar.settings = {
|
|
main."output" = "!DP-4";
|
|
alt = {
|
|
"include" = [
|
|
"~/.config/waybar/modules.json"
|
|
"~/.config/waybar/layout.json"
|
|
];
|
|
"output" = "DP-4";
|
|
"modules-left" = ["sway/workspaces"];
|
|
"modules-center" = ["clock#compact"];
|
|
"modules-right" = ["tray"];
|
|
};
|
|
};
|
|
}
|