-
-
Notifications
You must be signed in to change notification settings - Fork 14.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'staging-next' into staging
- Loading branch information
Showing
138 changed files
with
1,158 additions
and
682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2304,6 +2304,12 @@ | |
githubId = 99703210; | ||
name = "Katherine Jamison"; | ||
}; | ||
axka = { | ||
name = "Axel Karjalainen"; | ||
email = "[email protected]"; | ||
github = "axelkar"; | ||
githubId = 120189068; | ||
}; | ||
ayazhafiz = { | ||
email = "[email protected]"; | ||
github = "hafiz"; | ||
|
@@ -10513,6 +10519,18 @@ | |
githubId = 1476865; | ||
name = "jigglycrumb"; | ||
}; | ||
jiriks74 = { | ||
name = "Jiří Štefka"; | ||
email = "[email protected]"; | ||
github = "jiriks74"; | ||
githubId = 54378412; | ||
matrix = "@jiriks74:matrix.org"; | ||
keys = [ | ||
{ | ||
fingerprint = "563AC7887FD6414714A6ACAC1D5E30D3DB2264DE"; | ||
} | ||
]; | ||
}; | ||
jirkamarsik = { | ||
email = "[email protected]"; | ||
github = "jirkamarsik"; | ||
|
@@ -13768,6 +13786,17 @@ | |
githubId = 28183516; | ||
name = "Mateusz Słodkowicz"; | ||
}; | ||
mateusauler = { | ||
email = "[email protected]"; | ||
github = "mateusauler"; | ||
githubId = 24767687; | ||
name = "Mateus Auler"; | ||
keys = [ | ||
{ | ||
fingerprint = "A09D C093 3C37 4BFC 2B5A 269F 80A5 D62F 6EB7 D9F0"; | ||
} | ||
]; | ||
}; | ||
math-42 = { | ||
email = "[email protected]"; | ||
github = "Math-42"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
config, | ||
pkgs, | ||
lib, | ||
... | ||
}: | ||
|
||
let | ||
cfg = config.programs.git-worktree-switcher; | ||
|
||
initScript = | ||
shell: | ||
if (shell == "fish") then | ||
'' | ||
${lib.getExe pkgs.git-worktree-switcher} init ${shell} | source | ||
'' | ||
else | ||
'' | ||
eval "$(${lib.getExe pkgs.git-worktree-switcher} init ${shell})" | ||
''; | ||
in | ||
{ | ||
options = { | ||
programs.git-worktree-switcher = { | ||
enable = lib.mkEnableOption "git-worktree-switcher, switch between git worktrees with speed."; | ||
}; | ||
}; | ||
|
||
config = lib.mkIf cfg.enable { | ||
environment.systemPackages = with pkgs; [ git-worktree-switcher ]; | ||
|
||
programs.bash.interactiveShellInit = initScript "bash"; | ||
programs.zsh.interactiveShellInit = lib.optionalString config.programs.zsh.enable ( | ||
initScript "zsh" | ||
); | ||
programs.fish.interactiveShellInit = lib.optionalString config.programs.fish.enable ( | ||
initScript "fish" | ||
); | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.