2023-07-19 08:55:53 +01:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
shellConfig,
|
|
|
|
...
|
|
|
|
}: let
|
2023-07-16 17:35:36 +01:00
|
|
|
username = "elitherl";
|
|
|
|
homeDirectory = "/home/${username}";
|
2023-07-20 11:59:08 +01:00
|
|
|
monitors = {
|
|
|
|
eDP-1 = "preferred,auto,1.5";
|
|
|
|
Iiyama = "preferred,0x185,1";
|
|
|
|
Dell = "preferred,1920x0,1,transform,1";
|
|
|
|
};
|
2023-07-16 17:35:36 +01:00
|
|
|
in {
|
2023-07-12 16:43:18 +01:00
|
|
|
imports = [
|
2023-07-19 08:55:53 +01:00
|
|
|
shellConfig
|
2023-07-16 17:35:36 +01:00
|
|
|
../../home/git/work.nix
|
|
|
|
../../home/ssh/work.nix
|
2023-07-16 17:48:23 +01:00
|
|
|
../../home/tui
|
|
|
|
../../home/hyprland
|
2023-07-16 17:35:36 +01:00
|
|
|
../../home/firefox/work.nix
|
|
|
|
../../home/wezterm
|
2023-07-12 16:43:18 +01:00
|
|
|
];
|
|
|
|
home = {
|
2023-07-16 17:35:36 +01:00
|
|
|
inherit username homeDirectory;
|
2023-07-12 16:43:18 +01:00
|
|
|
stateVersion = "22.11";
|
2023-07-16 17:35:36 +01:00
|
|
|
packages = with pkgs; [
|
2023-07-18 16:24:27 +01:00
|
|
|
thunderbird
|
2023-07-16 17:35:36 +01:00
|
|
|
openfortivpn
|
|
|
|
nomachine-client
|
2023-07-24 09:07:26 +01:00
|
|
|
teams-for-linux
|
2023-07-16 17:35:36 +01:00
|
|
|
zoom-us
|
|
|
|
];
|
2023-07-12 16:43:18 +01:00
|
|
|
};
|
2023-07-24 13:27:05 +01:00
|
|
|
programs.home-manager.enable = true;
|
2023-07-20 11:59:08 +01:00
|
|
|
services.kanshi = {
|
|
|
|
enable = true;
|
|
|
|
systemdTarget = "hyprland-session.target";
|
|
|
|
profiles = {
|
|
|
|
undocked.outputs = [
|
|
|
|
{
|
|
|
|
criteria = "eDP-1";
|
|
|
|
status = "enable";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
docked.outputs = [
|
|
|
|
{
|
|
|
|
criteria = "eDP-1";
|
|
|
|
status = "disable";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
criteria = "Iiyama North America PLB2403WS 0574281251316";
|
|
|
|
status = "enable";
|
|
|
|
}
|
|
|
|
{
|
|
|
|
criteria = "Dell Inc. DELL U2417H 5K9YD872FY1L";
|
|
|
|
status = "enable";
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2023-07-12 16:43:18 +01:00
|
|
|
xdg.configFile."hypr/display.conf".text = ''
|
2023-07-20 11:59:08 +01:00
|
|
|
monitor=eDP-1,${monitors.eDP-1}
|
|
|
|
monitor=desc:Iiyama North America PLB2403WS 0574281251316,${monitors.Iiyama}
|
|
|
|
monitor=desc:Dell Inc. DELL U2417H 5K9YD872FY1L,${monitors.Dell}
|
|
|
|
|
|
|
|
bindl=,switch:Lid Switch,exec,rfkill unblock wlan
|
2023-07-24 09:07:26 +01:00
|
|
|
# bindl=,switch:Lid Switch,exec,hyprctl reload
|
2023-07-20 11:59:08 +01:00
|
|
|
bindl=,switch:Lid Switch,exec,pkill -9 kanshi
|
2023-07-21 17:15:39 +01:00
|
|
|
bindl=,switch:Lid Switch,exec,pkill -9 hyprpaper && hyprctl dispatch exec hyprpaper
|
2023-07-12 16:43:18 +01:00
|
|
|
'';
|
|
|
|
}
|