dotfiles/system/nixos/home-manager/modules/i3.nix

87 lines
2.2 KiB
Nix
Raw Normal View History

2023-11-14 20:20:07 +00:00
{ config, inputs, self, ... }:
let
modifier = "Mod4";
in
{
home.file.".background-image".source = ../../../../config/wallpaper/wallpaper.jpg;
2023-11-14 20:20:07 +00:00
xsession.windowManager.i3 = {
enable = true;
config = {
assigns = {
"1" = [{ class = "firefox"; }];
"3" = [{ class = "Alacritty"; }];
"4" = [{ class = "vlc"; }];
2023-11-14 20:20:07 +00:00
"9" = [
{ class = "Slack"; }
{ class = "discord"; }
];
};
modifier = modifier;
keybindings = inputs.nixpkgs.lib.mkOptionDefault {
"${modifier}+Shift+b" = "exec firefox";
2023-11-16 19:11:50 +00:00
"${modifier}+Tab" = "workspace back_and_forth";
2023-11-21 23:16:17 +00:00
# Change focus.
"${modifier}+h" = "focus left";
"${modifier}+j" = "focus down";
"${modifier}+k" = "focus up";
"${modifier}+l" = "focus right";
# Move focused window.
"${modifier}+Shift+h" = "move left";
"${modifier}+Shift+j" = "move down";
"${modifier}+Shift+k" = "move up";
"${modifier}+Shift+l" = "move right";
"XF86AudioRaiseVolume" = "exec pamixer -ui 2 && pamixer --get-volume";
"XF86AudioLowerVolume" = "exec pamixer -ud 2 && pamixer --get-volume";
"XF86AudioMute" = "exec pamixer --toggle-mute && ( [ \"$(pamixer --get-mute)\" = \"true\" ] && echo 0";
"XF86MonBrightnessDown" = "exec brightnessctl set 5%- | sed -En 's/.*\(([0-9]+)%\).*/\1/p'";
"XF86MonBrightnessUp" = "exec brightnessctl set +5% | sed -En 's/.*\(([0-9]+)%\).*/\1/p'";
2023-11-14 20:20:07 +00:00
};
terminal = "alacritty";
window = {
border = 0;
hideEdgeBorders = "none";
};
};
extraConfig = ''
set $laptop eDP-1
bindswitch --reload --locked lid:on output $laptop disable
bindswitch --reload --locked lid:off output $laptop enable
default_border none
default_floating_border none
smart_borders on
smart_gaps on
'';
};
2023-12-15 11:13:27 +00:00
programs.i3status = {
enable = true;
general = {
colors = true;
color_bad = "#f7768e";
color_degraded = "#ff9e64";
color_good = "#c0caf5";
};
modules = {
cpu_temperature.enable = false;
ipv6.enable = false;
load.enable = false;
};
};
2023-11-14 20:20:07 +00:00
}