dotfiles/nixos/user-xsession.nix

90 lines
2.7 KiB
Nix
Raw Normal View History

2019-07-14 09:35:06 +01:00
{ config, pkgs, ... }:
let
mod = "Mod4";
in
{
2019-07-14 12:22:18 +01:00
services = {
network-manager-applet.enable = true;
2019-07-14 12:42:23 +01:00
};
2019-07-14 12:22:18 +01:00
2019-07-14 12:42:23 +01:00
xsession = {
enable = true;
windowManager.i3 = {
2019-07-14 12:22:18 +01:00
enable = true;
2019-07-14 12:42:23 +01:00
package = pkgs.i3-gaps;
config = {
startup = [
2019-07-15 21:31:39 +01:00
{ command = "exec autorandr -c"; always = true; notification = false; }
2019-07-15 20:52:19 +01:00
{ command = "exec i3-sensible-terminal"; always = false; notification = false; }
{ command = "exec $HOME/dev/dotfiles/lock.sh"; always = false; notification = false; }
2019-07-14 12:42:23 +01:00
];
2019-07-14 19:24:40 +01:00
window = {
hideEdgeBorders = "horizontal";
titlebar = false;
border = 0;
};
workspaceLayout = "tabbed";
2019-07-14 12:42:23 +01:00
bars = [];
gaps = {
2019-07-14 15:16:49 +01:00
inner = 8;
2019-07-14 12:42:23 +01:00
outer = 0;
smartGaps = true;
smartBorders = "on";
};
2019-07-14 12:22:18 +01:00
2019-07-14 12:42:23 +01:00
modifier = mod;
keybindings = {
"${mod}+Shift+e" = "exec i3-msg exit";
2019-07-14 16:09:41 +01:00
"${mod}+Shift+c" = "reload";
2019-07-14 14:45:41 +01:00
"${mod}+Shift+r" = "restart";
2019-07-14 21:27:01 +01:00
"${mod}+Shift+l" = "exec physlock -d";
2019-07-14 16:09:41 +01:00
2019-07-14 19:24:40 +01:00
"XF86AudioRaiseVolume" = "exec --no-startup-id pactl set-sink-volume 0 +5%";
"XF86AudioLowerVolume" = "exec --no-startup-id pactl set-sink-volume 0 -5%";
"XF86AudioMute" = "exec --no-startup-id pactl set-sink-mute 0 toggle";
"XF86MonBrightnessUp" = "exec light -s sysfs/backlight/intel_backlight -A 5";
"XF86MonBrightnessDown" = "exec light -s sysfs/backlight/intel_backlight -U 5";
2019-07-14 16:09:41 +01:00
"${mod}+r" = "exec ${pkgs.rofi}/bin/rofi -show combi -combi-modi window#run#ssh -modi combi";
"${mod}+q" = "kill";
"${mod}+f" = "fullscreen toggle";
"${mod}+h" = "focus left";
"${mod}+j" = "focus down";
"${mod}+k" = "focus up";
"${mod}+l" = "focus right";
2019-07-14 09:35:06 +01:00
};
};
};
2019-07-14 12:42:23 +01:00
};
2019-07-14 14:45:41 +01:00
2019-07-14 15:16:49 +01:00
programs.autorandr = {
enable = true;
2019-07-15 21:31:39 +01:00
hooks.postswitch = {
"notify-i3" = "''${pkgs.i3}/bin/i3-msg restart";
};
2019-07-14 15:16:49 +01:00
profiles = {
"foureighty-alone" = {
fingerprint = {
eDP1 = "00ffffffffffff0006af362300000000001b0104a51f117802f4f5a4544d9c270f505400000001010101010101010101010101010101e65f00a0a0a040503020350035ae100000180000000f0000000000000000000000000020000000fe0041554f0a202020202020202020000000fe004231343051414e30322e33200a00b2";
};
config = {
eDP1 = {
enable = true;
primary = true;
mode = "2560x1440";
2019-07-15 21:31:39 +01:00
dpi = 192;
2019-07-14 15:16:49 +01:00
};
};
};
};
};
2019-07-14 14:45:41 +01:00
imports = [
./polybar.nix
];
2019-07-14 12:42:23 +01:00
}