mirror of
https://github.com/thegeneralist01/config.git
synced 2026-05-30 08:37:01 +02:00
Compare commits
No commits in common. "bb4804dfc10f6bee92c4fece3d4186db89b78f7d" and "1971d7f7d563112c6079ae1a80947f325a3608c5" have entirely different histories.
bb4804dfc1
...
1971d7f7d5
4 changed files with 19 additions and 32 deletions
|
|
@ -15,7 +15,9 @@ in {
|
|||
|
||||
userName = "TheGeneralist";
|
||||
userEmail = "180094941+thegeneralist01@users.noreply.github.com";
|
||||
lfs.enable = true;
|
||||
lfs = {
|
||||
enable = true;
|
||||
};
|
||||
|
||||
extraConfig = {
|
||||
commit.gpgSign = true;
|
||||
|
|
|
|||
|
|
@ -461,6 +461,4 @@ def --wrapped jc [...arguments: string@"nu-complete jc"]: [any -> table, any ->
|
|||
}
|
||||
}
|
||||
|
||||
if $nu.is-interactive {
|
||||
greeting
|
||||
}
|
||||
|
|
|
|||
|
|
@ -69,9 +69,7 @@ in
|
|||
config' = homeArgs.config;
|
||||
nuExecCondition =
|
||||
if config.isDarwin then
|
||||
''
|
||||
[[ $- == *i* ]] && [ -z "$skip" ] && [ -t 1 ]
|
||||
''
|
||||
''[ -z "$INTELLIJ_ENVIRONMENT_READER" ] && [ -z "$skip" ]''
|
||||
else
|
||||
''[ -z "$INTELLIJ_ENVIRONMENT_READER" ] && [ -z "$skip" ] && [ -z "$SSH_TTY" ]'';
|
||||
in
|
||||
|
|
@ -82,14 +80,11 @@ in
|
|||
source ${config'.home.sessionVariablesPackage}/etc/profile.d/hm-session-vars.sh
|
||||
|
||||
if ${nuExecCondition}; then
|
||||
parent_cmd="$(ps -o command= -p "$PPID" 2>/dev/null || true)"
|
||||
case "$parent_cmd" in
|
||||
*"/Applications/Zed.app/Contents/MacOS/zed --printenv"*) return ;;
|
||||
esac
|
||||
SHELL='${lib.getExe <| lib.head config'.shellsByPriority}' exec "$SHELL"
|
||||
fi
|
||||
'';
|
||||
}
|
||||
)
|
||||
|
||||
];
|
||||
}
|
||||
|
|
|
|||
|
|
@ -101,11 +101,6 @@
|
|||
action.spawn = [ "ghostty" ];
|
||||
};
|
||||
|
||||
"Mod+G" = {
|
||||
hotkey-overlay.title = "Open Terminal: ghostty";
|
||||
action.spawn = [ "ghostty" ];
|
||||
};
|
||||
|
||||
"Mod+B" = {
|
||||
hotkey-overlay.title = "Open Browser: helium";
|
||||
action.spawn = [ "helium" ];
|
||||
|
|
@ -116,10 +111,10 @@
|
|||
action.spawn = [ "sh" "-" "firefox" ];
|
||||
};
|
||||
|
||||
# "Mod+Shift+Q" = {
|
||||
# hotkey-overlay.title = "Lock Screen: gtklock";
|
||||
# action.spawn = [ "gtklock" ];
|
||||
# };
|
||||
"Mod+Shift+Q" = {
|
||||
hotkey-overlay.title = "Lock Screen: gtklock";
|
||||
action.spawn = [ "gtklock" ];
|
||||
};
|
||||
|
||||
"Mod+D" = {
|
||||
hotkey-overlay.title = "Open App Launcher: fuzzel";
|
||||
|
|
@ -396,14 +391,11 @@
|
|||
package = pkgs.niri;
|
||||
};
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
fuzzel
|
||||
xfce.thunar
|
||||
playerctl
|
||||
wireplumber
|
||||
yaziPlugins.wl-clipboard
|
||||
wl-clipboard-x11
|
||||
wl-clipboard-rs
|
||||
environment.systemPackages = [
|
||||
pkgs.fuzzel
|
||||
pkgs.xfce.thunar
|
||||
pkgs.playerctl
|
||||
pkgs.wireplumber
|
||||
];
|
||||
|
||||
services.xserver = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue