Compare commits

..

4 commits

Author SHA1 Message Date
79aefc3cee [macbook] git.
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-08-07 16:42:01 -07:00
Mariano Uvalle
039d521e1a [mac] disable ^Space keymap.
Signed-off-by: Mariano Uvalle <jmug@Mac.lan>
2025-08-07 16:40:31 -07:00
Mariano Uvalle
24fa6612d9 [macbook] add chrome cask.
Signed-off-by: Mariano Uvalle <jmug@Mac.lan>
2025-08-07 16:38:35 -07:00
Mariano Uvalle
684969e72b Move secretive to a home module.
Signed-off-by: Mariano Uvalle <jmug@Mac.lan>
2025-08-07 16:38:04 -07:00
6 changed files with 17 additions and 8 deletions

View file

@ -0,0 +1,9 @@
{ user, ... } : {
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
};
}

View file

@ -46,6 +46,7 @@
"logi-options+" "logi-options+"
"insta360-link-controller" "insta360-link-controller"
"yubico-authenticator" # TODO: Defer to a module that manages yubikeys for darwin. "yubico-authenticator" # TODO: Defer to a module that manages yubikeys for darwin.
"google-chrome"
]; ];
}; };

View file

@ -14,10 +14,12 @@ in {
../../home-modules/default.nix ../../home-modules/default.nix
../../home-modules/direnv.nix ../../home-modules/direnv.nix
../../home-modules/ghostty-config.nix ../../home-modules/ghostty-config.nix
../../home-modules/git.nix
../../home-modules/homebrew.nix ../../home-modules/homebrew.nix
../../home-modules/karabiner.nix ../../home-modules/karabiner.nix
../../home-modules/lazygit.nix ../../home-modules/lazygit.nix
../../home-modules/nvim.nix ../../home-modules/nvim.nix
../../home-modules/secretive.nix
../../home-modules/starship.nix ../../home-modules/starship.nix
../../home-modules/tmux.nix ../../home-modules/tmux.nix
../../home-modules/zsh.nix ../../home-modules/zsh.nix

View file

@ -57,6 +57,7 @@ let
# If you want to keep some hotkeys enabled, simply comment them out or remove them from the following list. # If you want to keep some hotkeys enabled, simply comment them out or remove them from the following list.
disableHotKeys = with hotkeyEnums; [ disableHotKeys = with hotkeyEnums; [
showSpotlightSearch showSpotlightSearch
selectPreviousInputSource
]; ];
enabledHotKeys = with hotkeyEnums; [ enabledHotKeys = with hotkeyEnums; [

View file

@ -18,6 +18,7 @@ in {
../../home-modules/karabiner.nix ../../home-modules/karabiner.nix
../../home-modules/lazygit.nix ../../home-modules/lazygit.nix
../../home-modules/nvim.nix ../../home-modules/nvim.nix
../../home-modules/nvim.nix
../../home-modules/starship.nix ../../home-modules/starship.nix
../../home-modules/tmux.nix ../../home-modules/tmux.nix
../../home-modules/zsh.nix ../../home-modules/zsh.nix
@ -69,13 +70,6 @@ in {
stateVersion = "25.05"; stateVersion = "25.05";
}; };
programs.ssh = {
enable = true;
extraConfig = ''
Host *
IdentityAgent ${homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
};
programs.zsh = { programs.zsh = {
shellAliases = { shellAliases = {

View file

@ -55,7 +55,9 @@ let
# Define which hotkeys you want to disable # Define which hotkeys you want to disable
# If you want to disable all hotkeys, you can use the `hotkeyEnums` directly # If you want to disable all hotkeys, you can use the `hotkeyEnums` directly
# If you want to keep some hotkeys enabled, simply comment them out or remove them from the following list. # If you want to keep some hotkeys enabled, simply comment them out or remove them from the following list.
disableHotKeys = with hotkeyEnums; []; disableHotKeys = with hotkeyEnums; [
selectPreviousInputSource
];
enabledHotKeys = with hotkeyEnums; [ enabledHotKeys = with hotkeyEnums; [
moveLeftASpace moveLeftASpace