fixed indentation and submodule

This commit is contained in:
Ittihadyya 2024-11-24 18:19:24 +02:00
parent d02fb27bfa
commit 57b7e38d2a

View file

@ -21,7 +21,8 @@
personal.home_modules = [ personal.home_modules = [
( (
{ lib, pkgs, ... }: { lib, pkgs, ... }:
wayland.windowManager.sway.config { {
wayland.windowManager.sway.config = {
modifier = "Mod4"; modifier = "Mod4";
fonts = { fonts = {
names = [ "pango" ]; names = [ "pango" ];
@ -59,9 +60,9 @@
"${mod}+Shift+Right" = "move right"; "${mod}+Shift+Right" = "move right";
"${mod}+Shift+m" = "split h"; # Horizontal split "${mod}+Shift+m" = "split h"; # Horizontal split
"${mod}+Shift+v" = "split v";# Vertical Split "${mod}+Shift+v" = "split v"; # Vertical Split
"${mod}+t" = "fullscreen toggle";# fullscreen "${mod}+t" = "fullscreen toggle"; # fullscreen
"${mod}+r" = "layout stacking"; "${mod}+r" = "layout stacking";
"${mod}+w" = "layout tabbed"; "${mod}+w" = "layout tabbed";
@ -100,6 +101,7 @@
"${mod}+Shift+0" = "move container to workspace number 10"; "${mod}+Shift+0" = "move container to workspace number 10";
}; };
### TODO : Resize mode and automatic floating
assigns = { assigns = {
"1:" = [ { title = "^Signal$|Discord$"; } ]; "1:" = [ { title = "^Signal$|Discord$"; } ];
"2:main" = [ { title = "VSCodium$"; } ]; "2:main" = [ { title = "VSCodium$"; } ];
@ -224,6 +226,7 @@
workspaceAutoBackAndForth = true; workspaceAutoBackAndForth = true;
workspaceLayout = "tabbed"; workspaceLayout = "tabbed";
};
} }
) )
]; ];