last maj
This commit is contained in:
@@ -61,7 +61,7 @@
|
|||||||
home-manager = home-manager;
|
home-manager = home-manager;
|
||||||
};
|
};
|
||||||
modules = [
|
modules = [
|
||||||
./hosts/nixos/overlays.nix
|
(import-tree ./overlays/nixos)
|
||||||
(import-tree ./hosts/common)
|
(import-tree ./hosts/common)
|
||||||
|
|
||||||
(import-tree ./modules/system/nixos)
|
(import-tree ./modules/system/nixos)
|
||||||
@@ -94,7 +94,6 @@
|
|||||||
]
|
]
|
||||||
++ [
|
++ [
|
||||||
(import-tree ./overlays/darwin)
|
(import-tree ./overlays/darwin)
|
||||||
(import-tree ./modules/system/darwin)
|
|
||||||
|
|
||||||
home-manager.darwinModules.home-manager
|
home-manager.darwinModules.home-manager
|
||||||
(import-tree ./hosts/common)
|
(import-tree ./hosts/common)
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
home-manager.users.alistreaza = {
|
home-manager.users.alistreaza = {
|
||||||
imports = [
|
imports = [
|
||||||
(import-tree ../../../modules/home/common)
|
(import-tree ../../../modules/home/common)
|
||||||
(import-tree ./partials)
|
(import-tree ../../../modules/home/darwin)
|
||||||
];
|
];
|
||||||
|
|
||||||
home = {
|
home = {
|
||||||
@@ -30,6 +30,46 @@
|
|||||||
targets.darwin.linkApps.enable = false;
|
targets.darwin.linkApps.enable = false;
|
||||||
targets.darwin.copyApps.enable = false;
|
targets.darwin.copyApps.enable = false;
|
||||||
|
|
||||||
|
services.paneru = {
|
||||||
|
enable = true;
|
||||||
|
# Equivalent to what you would put into `~/.paneru` (See Configuration options below).
|
||||||
|
settings = {
|
||||||
|
options = {
|
||||||
|
preset_column_widths = [
|
||||||
|
0.25
|
||||||
|
0.33
|
||||||
|
0.5
|
||||||
|
0.66
|
||||||
|
0.75
|
||||||
|
];
|
||||||
|
swipe_gesture_fingers = 4;
|
||||||
|
animation_speed = 4000;
|
||||||
|
};
|
||||||
|
bindings = {
|
||||||
|
window_focus_west = "cmd - h";
|
||||||
|
window_focus_east = "cmd - l";
|
||||||
|
window_focus_north = "cmd - k";
|
||||||
|
window_focus_south = "cmd - j";
|
||||||
|
window_swap_west = "alt - h";
|
||||||
|
window_swap_east = "alt - l";
|
||||||
|
window_swap_first = "alt + shift - h";
|
||||||
|
window_swap_last = "alt + shift - l";
|
||||||
|
window_center = "alt - c";
|
||||||
|
window_resize = "alt - r";
|
||||||
|
window_fullwidth = "alt - f";
|
||||||
|
window_manage = "ctrl + alt - t";
|
||||||
|
window_stack = "alt - ]";
|
||||||
|
window_unstack = "alt + shift - ]";
|
||||||
|
quit = "ctrl + alt - q";
|
||||||
|
};
|
||||||
|
windows.all = {
|
||||||
|
title = ".*";
|
||||||
|
vertical_padding = 5;
|
||||||
|
horizontal_padding = 5;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
# The state version is required and should stay at the version you
|
# The state version is required and should stay at the version you
|
||||||
# originally installed.
|
# originally installed.
|
||||||
home.stateVersion = "25.11";
|
home.stateVersion = "25.11";
|
||||||
|
|||||||
@@ -1,37 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
|
||||||
services.paneru = {
|
|
||||||
enable = true;
|
|
||||||
# Equivalent to what you would put into `~/.paneru` (See Configuration options below).
|
|
||||||
settings = {
|
|
||||||
options = {
|
|
||||||
preset_column_widths = [
|
|
||||||
0.25
|
|
||||||
0.33
|
|
||||||
0.5
|
|
||||||
0.66
|
|
||||||
0.75
|
|
||||||
];
|
|
||||||
swipe_gesture_fingers = 4;
|
|
||||||
animation_speed = 4000;
|
|
||||||
};
|
|
||||||
bindings = {
|
|
||||||
window_focus_west = "cmd - h";
|
|
||||||
window_focus_east = "cmd - l";
|
|
||||||
window_focus_north = "cmd - k";
|
|
||||||
window_focus_south = "cmd - j";
|
|
||||||
window_swap_west = "alt - h";
|
|
||||||
window_swap_east = "alt - l";
|
|
||||||
window_swap_first = "alt + shift - h";
|
|
||||||
window_swap_last = "alt + shift - l";
|
|
||||||
window_center = "alt - c";
|
|
||||||
window_resize = "alt - r";
|
|
||||||
window_fullwidth = "alt - f";
|
|
||||||
window_manage = "ctrl + alt - t";
|
|
||||||
window_stack = "alt - ]";
|
|
||||||
window_unstack = "alt + shift - ]";
|
|
||||||
quit = "ctrl + alt - q";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
||||||
@@ -14,7 +14,7 @@
|
|||||||
minimize-to-application = true;
|
minimize-to-application = true;
|
||||||
show-recents = false;
|
show-recents = false;
|
||||||
tilesize = 30;
|
tilesize = 30;
|
||||||
autohide = false;
|
autohide = true;
|
||||||
orientation = "bottom";
|
orientation = "bottom";
|
||||||
persistent-apps = [
|
persistent-apps = [
|
||||||
{ app = "/System/Applications/Apps.app"; }
|
{ app = "/System/Applications/Apps.app"; }
|
||||||
|
|||||||
@@ -12,12 +12,9 @@ in
|
|||||||
homebrew.casks = [
|
homebrew.casks = [
|
||||||
"intellij-idea"
|
"intellij-idea"
|
||||||
"pycharm"
|
"pycharm"
|
||||||
"phpstorm"
|
|
||||||
"rustrover"
|
|
||||||
"goland"
|
|
||||||
"datagrip"
|
|
||||||
"dataspell"
|
|
||||||
"clion"
|
"clion"
|
||||||
|
"rustrover"
|
||||||
|
"dataspell"
|
||||||
];
|
];
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user