@@ -1,9 +1,6 @@
|
|||||||
{ pkgs, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [ kitty.terminfo ];
|
||||||
kitty.terminfo
|
|
||||||
tmux.terminfo
|
|
||||||
];
|
|
||||||
|
|
||||||
services.openssh = {
|
services.openssh = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
@@ -1,10 +0,0 @@
|
|||||||
{ ... }:
|
|
||||||
{
|
|
||||||
programs.tmux = {
|
|
||||||
enable = true;
|
|
||||||
clock24 = true;
|
|
||||||
historyLimit = 10000;
|
|
||||||
keyMode = "vi";
|
|
||||||
newSession = true;
|
|
||||||
};
|
|
||||||
}
|
|
@@ -1,17 +1,34 @@
|
|||||||
{ user, home }:
|
{ user, home }:
|
||||||
{ ... }:
|
{ lib, pkgs, ... }:
|
||||||
{
|
{
|
||||||
home-manager.users.${user}.programs.btop = {
|
home-manager.users.${user} = {
|
||||||
enable = true;
|
programs.btop = {
|
||||||
settings = {
|
enable = true;
|
||||||
theme_background = false;
|
settings = {
|
||||||
presets = "";
|
color_theme = "matugen";
|
||||||
vim_keys = true;
|
theme_background = false;
|
||||||
shown_boxes = "cpu mem net proc gpu0 gpu1";
|
presets = "";
|
||||||
update_ms = 1000;
|
vim_keys = true;
|
||||||
proc_tree = true;
|
shown_boxes = "cpu mem net proc gpu0 gpu1";
|
||||||
cpu_single_graph = true;
|
update_ms = 1000;
|
||||||
disks_filter = "/ /nix /persist";
|
proc_tree = true;
|
||||||
|
cpu_single_graph = true;
|
||||||
|
disks_filter = "/ /nix /persist";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
theme = {
|
||||||
|
template.".config/btop/themes/matugen.theme".source = ./theme.theme;
|
||||||
|
|
||||||
|
reloadExtraConfig = "${
|
||||||
|
lib.meta.getExe (
|
||||||
|
pkgs.writeShellApplication {
|
||||||
|
name = "reload-btop";
|
||||||
|
runtimeInputs = with pkgs; [ procps ];
|
||||||
|
text = "exec pkill btop -SIGUSR2";
|
||||||
|
}
|
||||||
|
)
|
||||||
|
} &";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@@ -1,5 +0,0 @@
|
|||||||
{ user, home }:
|
|
||||||
{ ... }:
|
|
||||||
{
|
|
||||||
home-manager.users.${user}.programs.tmux.enable = true;
|
|
||||||
}
|
|
26
hosts/common/configs/user/console/zellij/default.nix
Normal file
26
hosts/common/configs/user/console/zellij/default.nix
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
{ user, home }:
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
home-manager.users.${user} = {
|
||||||
|
programs.zellij = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
settings = {
|
||||||
|
theme = "matugen";
|
||||||
|
|
||||||
|
pane_frames = false;
|
||||||
|
copy_command = "wl-copy";
|
||||||
|
|
||||||
|
ui.pane_frames.hide_session_name = true;
|
||||||
|
|
||||||
|
pane_viewport_serialization = true;
|
||||||
|
scrollback_lines_to_serialize = 0;
|
||||||
|
|
||||||
|
show_startup_tips = false;
|
||||||
|
show_release_notes = false;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
theme.template.".config/zellij/themes/matugen.kdl".source = ./theme.kdl;
|
||||||
|
};
|
||||||
|
}
|
128
hosts/common/configs/user/console/zellij/theme.kdl
Normal file
128
hosts/common/configs/user/console/zellij/theme.kdl
Normal file
@@ -0,0 +1,128 @@
|
|||||||
|
themes {
|
||||||
|
matugen {
|
||||||
|
text_unselected {
|
||||||
|
base {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.secondary.default.red}} {{colors.secondary.default.green}} {{colors.secondary.default.blue}}
|
||||||
|
emphasis_2 {{colors.tertiary.default.red}} {{colors.tertiary.default.green}} {{colors.tertiary.default.blue}}
|
||||||
|
emphasis_3 {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
}
|
||||||
|
text_selected {
|
||||||
|
base {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
background {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_0 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_2 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
}
|
||||||
|
ribbon_unselected {
|
||||||
|
base {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
background {{colors.surface_container.default.red}} {{colors.surface_container.default.green}} {{colors.surface_container.default.blue}}
|
||||||
|
emphasis_0 {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.secondary.default.red}} {{colors.secondary.default.green}} {{colors.secondary.default.blue}}
|
||||||
|
emphasis_2 {{colors.tertiary.default.red}} {{colors.tertiary.default.green}} {{colors.tertiary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
}
|
||||||
|
ribbon_selected {
|
||||||
|
base {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
background {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_0 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_2 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
}
|
||||||
|
table_title {
|
||||||
|
base {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.secondary.default.red}} {{colors.secondary.default.green}} {{colors.secondary.default.blue}}
|
||||||
|
emphasis_2 {{colors.tertiary.default.red}} {{colors.tertiary.default.green}} {{colors.tertiary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
}
|
||||||
|
table_cell_unselected {
|
||||||
|
base {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.secondary.default.red}} {{colors.secondary.default.green}} {{colors.secondary.default.blue}}
|
||||||
|
emphasis_2 {{colors.tertiary.default.red}} {{colors.tertiary.default.green}} {{colors.tertiary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
}
|
||||||
|
table_cell_selected {
|
||||||
|
base {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
background {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_0 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_2 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
}
|
||||||
|
list_unselected {
|
||||||
|
base {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.secondary.default.red}} {{colors.secondary.default.green}} {{colors.secondary.default.blue}}
|
||||||
|
emphasis_2 {{colors.tertiary.default.red}} {{colors.tertiary.default.green}} {{colors.tertiary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_surface.default.red}} {{colors.on_surface.default.green}} {{colors.on_surface.default.blue}}
|
||||||
|
}
|
||||||
|
list_selected {
|
||||||
|
base {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
background {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
emphasis_0 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_1 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_2 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
emphasis_3 {{colors.on_primary.default.red}} {{colors.on_primary.default.green}} {{colors.on_primary.default.blue}}
|
||||||
|
}
|
||||||
|
frame_unselected {
|
||||||
|
base {{colors.outline.default.red}} {{colors.outline.default.green}} {{colors.outline.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 0
|
||||||
|
emphasis_1 0
|
||||||
|
emphasis_2 0
|
||||||
|
emphasis_3 0
|
||||||
|
}
|
||||||
|
frame_selected {
|
||||||
|
base {{colors.primary.default.red}} {{colors.primary.default.green}} {{colors.primary.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 0
|
||||||
|
emphasis_1 0
|
||||||
|
emphasis_2 0
|
||||||
|
emphasis_3 0
|
||||||
|
}
|
||||||
|
frame_highlight {
|
||||||
|
base {{colors.error.default.red}} {{colors.error.default.green}} {{colors.error.default.blue}}
|
||||||
|
background {{colors.surface.default.red}} {{colors.surface.default.green}} {{colors.surface.default.blue}}
|
||||||
|
emphasis_0 0
|
||||||
|
emphasis_1 0
|
||||||
|
emphasis_2 0
|
||||||
|
emphasis_3 0
|
||||||
|
}
|
||||||
|
exit_code_success {
|
||||||
|
base {{colors.success.default.red}} {{colors.success.default.green}} {{colors.success.default.blue}}
|
||||||
|
background 0
|
||||||
|
emphasis_0 0
|
||||||
|
emphasis_1 0
|
||||||
|
emphasis_2 0
|
||||||
|
emphasis_3 0
|
||||||
|
}
|
||||||
|
exit_code_error {
|
||||||
|
base {{colors.error.default.red}} {{colors.error.default.green}} {{colors.error.default.blue}}
|
||||||
|
background 0
|
||||||
|
emphasis_0 0
|
||||||
|
emphasis_1 0
|
||||||
|
emphasis_2 0
|
||||||
|
emphasis_3 0
|
||||||
|
}
|
||||||
|
multiplayer_user_colors {
|
||||||
|
player_1 0
|
||||||
|
player_2 0
|
||||||
|
player_3 0
|
||||||
|
player_4 0
|
||||||
|
player_5 0
|
||||||
|
player_6 0
|
||||||
|
player_7 0
|
||||||
|
player_8 0
|
||||||
|
player_9 0
|
||||||
|
player_10 0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@@ -1,26 +0,0 @@
|
|||||||
{ user, home }:
|
|
||||||
{
|
|
||||||
config,
|
|
||||||
lib,
|
|
||||||
pkgs,
|
|
||||||
...
|
|
||||||
}:
|
|
||||||
{
|
|
||||||
home-manager.users.${user} = {
|
|
||||||
programs.btop.settings.color_theme = "matugen";
|
|
||||||
|
|
||||||
theme = {
|
|
||||||
template.".config/btop/themes/matugen.theme".source = ./theme.theme;
|
|
||||||
|
|
||||||
reloadExtraConfig = "${
|
|
||||||
lib.meta.getExe (
|
|
||||||
pkgs.writeShellApplication {
|
|
||||||
name = "reload-btop";
|
|
||||||
runtimeInputs = with pkgs; [ procps ];
|
|
||||||
text = "exec pkill btop -SIGUSR2";
|
|
||||||
}
|
|
||||||
)
|
|
||||||
} &";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
|
@@ -29,7 +29,6 @@
|
|||||||
../common/configs/system/ssh
|
../common/configs/system/ssh
|
||||||
../common/configs/system/sudo
|
../common/configs/system/sudo
|
||||||
../common/configs/system/system
|
../common/configs/system/system
|
||||||
../common/configs/system/tmux
|
|
||||||
../common/configs/system/users
|
../common/configs/system/users
|
||||||
../common/configs/system/zsh
|
../common/configs/system/zsh
|
||||||
|
|
||||||
|
5
hosts/elara/users/nikara/configs/gui/kitty/default.nix
Normal file
5
hosts/elara/users/nikara/configs/gui/kitty/default.nix
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
{ user, home }:
|
||||||
|
{ ... }:
|
||||||
|
{
|
||||||
|
home-manager.users.${user}.programs.kitty.settings.hide_window_decorations = true;
|
||||||
|
}
|
@@ -37,15 +37,16 @@ in
|
|||||||
(import ../../../common/configs/user/console/sops { inherit user home; })
|
(import ../../../common/configs/user/console/sops { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/ssh { inherit user home; })
|
(import ../../../common/configs/user/console/ssh { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/ssh-agent { inherit user home; })
|
(import ../../../common/configs/user/console/ssh-agent { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/tmux { inherit user home; })
|
|
||||||
(import ../../../common/configs/user/console/tree { inherit user home; })
|
(import ../../../common/configs/user/console/tree { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/wget { inherit user home; })
|
(import ../../../common/configs/user/console/wget { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
||||||
|
(import ../../../common/configs/user/console/zellij { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
||||||
|
|
||||||
(import ../../../common/configs/user/gui/gtk { inherit user home; })
|
(import ../../../common/configs/user/gui/gtk { inherit user home; })
|
||||||
|
(import ../../../common/configs/user/gui/kitty { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/obsidian { inherit user home; })
|
(import ../../../common/configs/user/gui/obsidian { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/qt { inherit user home; })
|
(import ../../../common/configs/user/gui/qt { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/theme { inherit user home; })
|
(import ../../../common/configs/user/gui/theme { inherit user home; })
|
||||||
@@ -57,6 +58,7 @@ in
|
|||||||
(import ./configs/console/ssh { inherit user home; })
|
(import ./configs/console/ssh { inherit user home; })
|
||||||
(import ./configs/console/wsl { inherit user home; })
|
(import ./configs/console/wsl { inherit user home; })
|
||||||
|
|
||||||
|
(import ./configs/gui/kitty { inherit user home; })
|
||||||
(import ./configs/gui/obsidian { inherit user home; })
|
(import ./configs/gui/obsidian { inherit user home; })
|
||||||
(import ./configs/gui/vscode { inherit user home; })
|
(import ./configs/gui/vscode { inherit user home; })
|
||||||
];
|
];
|
||||||
|
@@ -43,7 +43,6 @@
|
|||||||
../common/configs/system/sudo
|
../common/configs/system/sudo
|
||||||
../common/configs/system/system
|
../common/configs/system/system
|
||||||
../common/configs/system/timezone
|
../common/configs/system/timezone
|
||||||
../common/configs/system/tmux
|
|
||||||
../common/configs/system/upower
|
../common/configs/system/upower
|
||||||
../common/configs/system/users
|
../common/configs/system/users
|
||||||
../common/configs/system/zsh
|
../common/configs/system/zsh
|
||||||
|
@@ -29,18 +29,6 @@
|
|||||||
", XF86Launch4, exec, ${asusctl} profile -n"
|
", XF86Launch4, exec, ${asusctl} profile -n"
|
||||||
", XF86TouchpadToggle, exec, ${touchpadHelper} asuf1209:00-2808:0219-touchpad"
|
", XF86TouchpadToggle, exec, ${touchpadHelper} asuf1209:00-2808:0219-touchpad"
|
||||||
];
|
];
|
||||||
|
|
||||||
bind =
|
|
||||||
let
|
|
||||||
farmAura = lib.meta.getExe (
|
|
||||||
pkgs.writeShellApplication {
|
|
||||||
name = "farm-aura";
|
|
||||||
runtimeInputs = with pkgs; [ genact ];
|
|
||||||
text = builtins.readFile ./scripts/farm-aura.sh;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
in
|
|
||||||
[ ", XF86Launch3, exec, uwsm app -- $term ${farmAura}" ];
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
@@ -1,13 +0,0 @@
|
|||||||
# shellcheck shell=bash
|
|
||||||
|
|
||||||
SESSION_NAME="aura-farm-$$"
|
|
||||||
|
|
||||||
tmux new-session -d -s "$SESSION_NAME" "genact -s 25"
|
|
||||||
tmux set-hook -t "$SESSION_NAME" pane-exited "run-shell 'tmux kill-session -t $SESSION_NAME'"
|
|
||||||
|
|
||||||
for _ in {1..4}; do
|
|
||||||
tmux split-window -t "$SESSION_NAME" -h "genact -s 25"
|
|
||||||
done
|
|
||||||
|
|
||||||
tmux select-layout -t "$SESSION_NAME" tiled
|
|
||||||
tmux attach-session -t "$SESSION_NAME"
|
|
@@ -43,18 +43,17 @@ in
|
|||||||
(import ../../../common/configs/user/console/ssh { inherit user home; })
|
(import ../../../common/configs/user/console/ssh { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/ssh-agent { inherit user home; })
|
(import ../../../common/configs/user/console/ssh-agent { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/syncthing { inherit user home; })
|
(import ../../../common/configs/user/console/syncthing { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/tmux { inherit user home; })
|
|
||||||
(import ../../../common/configs/user/console/tree { inherit user home; })
|
(import ../../../common/configs/user/console/tree { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/wget { inherit user home; })
|
(import ../../../common/configs/user/console/wget { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/yt-dlp { inherit user home; })
|
(import ../../../common/configs/user/console/yt-dlp { inherit user home; })
|
||||||
|
(import ../../../common/configs/user/console/zellij { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
||||||
|
|
||||||
(import ../../../common/configs/user/gui/astal { inherit user home; })
|
(import ../../../common/configs/user/gui/astal { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/bluetooth { inherit user home; })
|
(import ../../../common/configs/user/gui/bluetooth { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/btop { inherit user home; })
|
|
||||||
(import ../../../common/configs/user/gui/clipbook { inherit user home; })
|
(import ../../../common/configs/user/gui/clipbook { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/cliphist { inherit user home; })
|
(import ../../../common/configs/user/gui/cliphist { inherit user home; })
|
||||||
(import ../../../common/configs/user/gui/darktable { inherit user home; })
|
(import ../../../common/configs/user/gui/darktable { inherit user home; })
|
||||||
|
@@ -36,7 +36,6 @@
|
|||||||
../common/configs/system/sudo
|
../common/configs/system/sudo
|
||||||
../common/configs/system/system
|
../common/configs/system/system
|
||||||
../common/configs/system/timezone
|
../common/configs/system/timezone
|
||||||
../common/configs/system/tmux
|
|
||||||
../common/configs/system/users
|
../common/configs/system/users
|
||||||
../common/configs/system/zsh
|
../common/configs/system/zsh
|
||||||
|
|
||||||
|
@@ -31,11 +31,11 @@ in
|
|||||||
(import ../../../common/configs/user/console/sops { inherit user home; })
|
(import ../../../common/configs/user/console/sops { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/ssh { inherit user home; })
|
(import ../../../common/configs/user/console/ssh { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/ssh-agent { inherit user home; })
|
(import ../../../common/configs/user/console/ssh-agent { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/tmux { inherit user home; })
|
|
||||||
(import ../../../common/configs/user/console/tree { inherit user home; })
|
(import ../../../common/configs/user/console/tree { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/wget { inherit user home; })
|
(import ../../../common/configs/user/console/wget { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
||||||
|
(import ../../../common/configs/user/console/zellij { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
||||||
|
|
||||||
|
@@ -30,11 +30,11 @@ in
|
|||||||
(import ../../../common/configs/user/console/ouch { inherit user home; })
|
(import ../../../common/configs/user/console/ouch { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/podman { inherit user home; })
|
(import ../../../common/configs/user/console/podman { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/sops { inherit user home; })
|
(import ../../../common/configs/user/console/sops { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/tmux { inherit user home; })
|
|
||||||
(import ../../../common/configs/user/console/tree { inherit user home; })
|
(import ../../../common/configs/user/console/tree { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/wget { inherit user home; })
|
(import ../../../common/configs/user/console/wget { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
(import ../../../common/configs/user/console/xdg { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
||||||
|
(import ../../../common/configs/user/console/zellij { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
||||||
|
|
||||||
|
@@ -20,9 +20,9 @@ in
|
|||||||
(import ../../../common/configs/user/console/neovim { inherit user home; })
|
(import ../../../common/configs/user/console/neovim { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/podman { inherit user home; })
|
(import ../../../common/configs/user/console/podman { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/sops { inherit user home; })
|
(import ../../../common/configs/user/console/sops { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/tmux { inherit user home; })
|
|
||||||
(import ../../../common/configs/user/console/tree { inherit user home; })
|
(import ../../../common/configs/user/console/tree { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
(import ../../../common/configs/user/console/yazi { inherit user home; })
|
||||||
|
(import ../../../common/configs/user/console/zellij { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
(import ../../../common/configs/user/console/zoxide { inherit user home; })
|
||||||
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
(import ../../../common/configs/user/console/zsh { inherit user home; })
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user