Compare commits
4 commits
018fcedea3
...
79aefc3cee
| Author | SHA1 | Date | |
|---|---|---|---|
| 79aefc3cee | |||
|
|
039d521e1a | ||
|
|
24fa6612d9 | ||
|
|
684969e72b |
6 changed files with 17 additions and 8 deletions
9
home-modules/secretive.nix
Normal file
9
home-modules/secretive.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{ user, ... } : {
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
Host *
|
||||
IdentityAgent ${user.homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
@ -46,6 +46,7 @@
|
|||
"logi-options+"
|
||||
"insta360-link-controller"
|
||||
"yubico-authenticator" # TODO: Defer to a module that manages yubikeys for darwin.
|
||||
"google-chrome"
|
||||
];
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -14,10 +14,12 @@ in {
|
|||
../../home-modules/default.nix
|
||||
../../home-modules/direnv.nix
|
||||
../../home-modules/ghostty-config.nix
|
||||
../../home-modules/git.nix
|
||||
../../home-modules/homebrew.nix
|
||||
../../home-modules/karabiner.nix
|
||||
../../home-modules/lazygit.nix
|
||||
../../home-modules/nvim.nix
|
||||
../../home-modules/secretive.nix
|
||||
../../home-modules/starship.nix
|
||||
../../home-modules/tmux.nix
|
||||
../../home-modules/zsh.nix
|
||||
|
|
|
|||
|
|
@ -57,6 +57,7 @@ let
|
|||
# If you want to keep some hotkeys enabled, simply comment them out or remove them from the following list.
|
||||
disableHotKeys = with hotkeyEnums; [
|
||||
showSpotlightSearch
|
||||
selectPreviousInputSource
|
||||
];
|
||||
|
||||
enabledHotKeys = with hotkeyEnums; [
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@ in {
|
|||
../../home-modules/karabiner.nix
|
||||
../../home-modules/lazygit.nix
|
||||
../../home-modules/nvim.nix
|
||||
../../home-modules/nvim.nix
|
||||
../../home-modules/starship.nix
|
||||
../../home-modules/tmux.nix
|
||||
../../home-modules/zsh.nix
|
||||
|
|
@ -69,13 +70,6 @@ in {
|
|||
stateVersion = "25.05";
|
||||
};
|
||||
|
||||
programs.ssh = {
|
||||
enable = true;
|
||||
extraConfig = ''
|
||||
Host *
|
||||
IdentityAgent ${homeDirectory}/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
|
||||
'';
|
||||
};
|
||||
|
||||
programs.zsh = {
|
||||
shellAliases = {
|
||||
|
|
|
|||
|
|
@ -55,7 +55,9 @@ let
|
|||
# Define which hotkeys you want to disable
|
||||
# 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.
|
||||
disableHotKeys = with hotkeyEnums; [];
|
||||
disableHotKeys = with hotkeyEnums; [
|
||||
selectPreviousInputSource
|
||||
];
|
||||
|
||||
enabledHotKeys = with hotkeyEnums; [
|
||||
moveLeftASpace
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue