actualize

This commit is contained in:
Aleksandr 2025-06-10 01:18:14 +00:00
parent 68339c7f4e
commit 9426336e90
4 changed files with 12 additions and 1 deletions

View file

@ -25,6 +25,8 @@ in
}; };
}; };
binds = (with config.lib.niri.actions; { binds = (with config.lib.niri.actions; {
"Mod+Alt+F".action = toggle-window-floating;
"Mod+W".action = toggle-column-tabbed-display;
"Mod+A".action = spawn "fuzzel"; "Mod+A".action = spawn "fuzzel";
"Mod+Q".action = spawn "wezterm"; "Mod+Q".action = spawn "wezterm";
"Mod+Left".action = focus-column-left; "Mod+Left".action = focus-column-left;
@ -33,7 +35,7 @@ in
"Mod+Shift+Right".action = set-column-width "+5%"; "Mod+Shift+Right".action = set-column-width "+5%";
"Mod+Shift+H".action = move-column-left; "Mod+Shift+H".action = move-column-left;
"Mod+Shift+L".action = move-column-right; "Mod+Shift+L".action = move-column-right;
"Mod+F".action = fullscreen-window; "Mod+F".action = maximize-column;
"Mod+Shift+E".action = quit { skip-confirmation = true; }; "Mod+Shift+E".action = quit { skip-confirmation = true; };
"Mod+C".action = close-window; "Mod+C".action = close-window;
"Mod+Shift+R".action = screenshot {}; "Mod+Shift+R".action = screenshot {};

View file

@ -13,5 +13,6 @@
"slack" "slack"
]; ];
networking.hostName = "lil-maid";
system.stateVersion = "25.11"; system.stateVersion = "25.11";
} }

View file

@ -4,6 +4,7 @@
fonts.packages = with pkgs; [ fonts.packages = with pkgs; [
nerd-fonts.fira-code nerd-fonts.fira-code
nerd-fonts.jetbrains-mono nerd-fonts.jetbrains-mono
font-awesome
]; ];
fonts.fontDir.enable = true; fonts.fontDir.enable = true;
} }

View file

@ -36,6 +36,9 @@
services.mako = { services.mako = {
enable = true; enable = true;
settings = {
default-timeout = 2000;
};
}; };
programs.zen-browser = { programs.zen-browser = {
@ -77,6 +80,10 @@
userName = "Aleksandr"; userName = "Aleksandr";
userEmail = "nerodono0@gmail.com"; userEmail = "nerodono0@gmail.com";
}; };
programs.starship = {
enable = true;
settings = {};
};
programs.niri.settings = import (dotfiles + "/niri") args; programs.niri.settings = import (dotfiles + "/niri") args;
}; };