This commit is contained in:
Miguel Palhas
2026-03-21 16:01:20 +00:00
parent beb62ba7e0
commit 9af55f9e16
9 changed files with 224 additions and 147 deletions
+1
View File
@@ -20,6 +20,7 @@
./opencode
./yazi
./termfilechooser.nix
./ssh.nix
];
programs = {
@@ -54,19 +54,11 @@ in
package = null;
portalPackage = null;
plugins = [
inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprexpo
# inputs.hyprland-plugins.packages.${pkgs.stdenv.hostPlatform.system}.hyprfocus
# inputs.hyprspace.packages.${pkgs.stdenv.hostPlatform.system}.Hyprspace
];
settings = {
plugin = {
hyprexpo = {
columns = 3;
gap_size = 5;
bg_col = "rgb(000000)";
workspace_method = "center current";
skip_empty = true;
};
# hyprfocus = {
# enabled = true;
# mode = "flash";
@@ -227,7 +219,6 @@ in
bind = [
"$mod, n, exec, noctalia-shell ipc call controlCenter toggle"
"$mod, g, hyprexpo:expo, toggle"
# "$mod, tab, overview:toggle,"
"$mod, b, exec, pkill waybar || waybar"
"$mod, t, exec, kitty"
+16
View File
@@ -0,0 +1,16 @@
{ ... }:
{
programs.ssh = {
enable = true;
matchBlocks = {
"yolo" = {
hostname = "10.7.10.2";
remoteForwards = [{
bind.port = 9222;
host.address = "localhost";
host.port = 9222;
}];
};
};
};
}