2023-06-19 14:33:05 +01:00
|
|
|
{pkgs, ...}: {
|
|
|
|
imports = [
|
|
|
|
../../home/work.nix
|
|
|
|
../../home/gui
|
2023-06-20 07:05:13 +01:00
|
|
|
../../home/desktop/swayfx.nix
|
2023-06-19 14:33:05 +01:00
|
|
|
];
|
|
|
|
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;
|
|
|
|
|
2023-06-20 07:05:13 +01:00
|
|
|
# wayland.windowManager.hyprland.extraConfig = ''
|
|
|
|
# source=./common.conf
|
|
|
|
# monitor=eDP-1,preferred,auto,auto
|
|
|
|
# monitor=DP-3,preferred,auto,auto
|
|
|
|
# monitor=DP-4,preferred,auto,auto,transform,1
|
|
|
|
# windowrule = float, title:^([Zz]oom).*$
|
|
|
|
# windowrule = center, title:^([Zz]oom).*$
|
|
|
|
# windowrule = float, ^(Nxplayer.bin)$
|
|
|
|
# windowrule = center, ^(Nxplayer.bin)$
|
|
|
|
# windowrule = workspace 3, title:^([Zz]oom).*$
|
|
|
|
# windowrule = workspace 4, ^(Nxplayer.bin)$
|
|
|
|
# '';
|
|
|
|
wayland.windowManager.sway.config.output.eDP-2.scale = "1.5";
|
2023-06-19 14:33:05 +01:00
|
|
|
programs.waybar.settings = {
|
|
|
|
main = {
|
|
|
|
"output" = "DP-3";
|
|
|
|
"modules-left" = [
|
2023-06-20 07:05:13 +01:00
|
|
|
"sway/workspaces"
|
2023-06-19 14:33:05 +01:00
|
|
|
"cpu"
|
|
|
|
"memory"
|
|
|
|
"temperature"
|
|
|
|
];
|
|
|
|
"modules-center" = ["clock"];
|
|
|
|
"modules-right" = [
|
|
|
|
"pulseaudio"
|
|
|
|
"bluetooth"
|
|
|
|
"network#compact"
|
|
|
|
"backlight"
|
|
|
|
"battery"
|
|
|
|
"tray"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
alt-integrated = {
|
|
|
|
"include" = [
|
|
|
|
"~/.config/waybar/modules.json"
|
|
|
|
"~/.config/waybar/layout.json"
|
|
|
|
];
|
|
|
|
"output" = "eDP-1";
|
|
|
|
"modules-left" = [
|
2023-06-20 07:05:13 +01:00
|
|
|
"sway/workspaces"
|
2023-06-19 14:33:05 +01:00
|
|
|
"cpu"
|
|
|
|
"memory"
|
|
|
|
"temperature"
|
|
|
|
];
|
|
|
|
"modules-center" = ["clock#compact"];
|
|
|
|
"modules-right" = [
|
|
|
|
"pulseaudio#compact"
|
|
|
|
"bluetooth"
|
|
|
|
"network#compact"
|
|
|
|
"backlight"
|
|
|
|
"battery"
|
|
|
|
"tray"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
alt-vertical = {
|
|
|
|
"include" = [
|
|
|
|
"~/.config/waybar/modules.json"
|
|
|
|
"~/.config/waybar/layout.json"
|
|
|
|
];
|
|
|
|
"output" = "DP-4";
|
2023-06-20 07:05:13 +01:00
|
|
|
"modules-left" = ["sway/workspaces"];
|
2023-06-19 14:33:05 +01:00
|
|
|
"modules-center" = ["clock#compact"];
|
|
|
|
"modules-right" = ["tray"];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|