This commit is contained in:
Torjus Håkestad 2024-03-03 10:14:09 +01:00
parent 9cc4631fa6
commit 40332b46df
3 changed files with 44 additions and 0 deletions

View File

@ -16,6 +16,7 @@
./zsh ./zsh
./packages ./packages
./hyprland ./hyprland
./i3
]; ];
firefox.enable = true; firefox.enable = true;
tmux.enable = true; tmux.enable = true;

34
home/i3/default.nix Normal file
View File

@ -0,0 +1,34 @@
{ config, lib, pkgs, ... }:
let
mod = "Mod4";
in
{
xsession.windowManager.i3 = {
enable = true;
config = {
modifier = mod;
fonts = [ "DejaVu Sans Mono, FontAwesome 6" ];
keybindings = lib.mkOptionDefault {
"${mod}+Enter" = "exec kitty";
# Focus
"${mod}+j" = "focus left";
"${mod}+k" = "focus down";
"${mod}+l" = "focus up";
"${mod}+semicolon" = "focus right";
# Move
"${mod}+Shift+j" = "move left";
"${mod}+Shift+k" = "move down";
"${mod}+Shift+l" = "move up";
"${mod}+Shift+semicolon" = "move right";
# My multi monitor setup
"${mod}+m" = "move workspace to output DP-2";
"${mod}+Shift+m" = "move workspace to output DP-5";
};
};
};
}

View File

@ -62,6 +62,8 @@
services.xserver.videoDrivers = [ "nvidia" ]; services.xserver.videoDrivers = [ "nvidia" ];
services.xserver.displayManager.gdm.wayland = true; services.xserver.displayManager.gdm.wayland = true;
services.xserver.displayManager.lightdm.enable = false; services.xserver.displayManager.lightdm.enable = false;
services.xserver.displayManager.startx.enable = true;
services.xserver.windowManager.i3.enable = true;
programs.hyprland = { programs.hyprland = {
enable = true; enable = true;
xwayland.enable = true; xwayland.enable = true;
@ -100,6 +102,13 @@
usbutils usbutils
vim vim
wget wget
# X shit
xorg.xorgserver
xorg.xinit
xorg.xf86inputevdev
xorg.xf86inputlibinput
xorg.xinit
]; ];
# Do NOT change this value unless you have manually inspected all the changes it would make to your configuration, # Do NOT change this value unless you have manually inspected all the changes it would make to your configuration,