mirror of
https://github.com/sadan4/dotfiles.git
synced 2024-11-16 23:04:39 -05:00
148 current 2024-05-26 11:09:04 24.05.20240419.5c24cf2 6.8.6-zen1 *
This commit is contained in:
parent
d6a7b08b22
commit
2f7da6710a
1 changed files with 17 additions and 4 deletions
|
@ -2,8 +2,8 @@
|
|||
|
||||
let
|
||||
files = import ../../common/files.nix { inherit config; };
|
||||
shell = import ../../common/shell.nix {inherit config pkgs;};
|
||||
p = import ../../common/pkgs.nix {inherit pkgs config;};
|
||||
shell = import ../../common/shell.nix { inherit config pkgs; };
|
||||
p = import ../../common/pkgs.nix { inherit pkgs config; };
|
||||
_p1 = p.dev ++ p.gui ++ p.general ++ p.scripts ++ p.gaming;
|
||||
zshInitArgs = [
|
||||
"source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme"
|
||||
|
@ -22,7 +22,20 @@ in
|
|||
programs.java.package = pkgs.temurin-bin-17;
|
||||
programs.zoxide.enable = true;
|
||||
programs.zoxide.enableZshIntegration = true;
|
||||
|
||||
programs.git.enable = true;
|
||||
programs.git.userName = "sadan";
|
||||
programs.git.userEmail = "117494111+sadan4@users.noreply.github.com";
|
||||
programs.git.extraConfig = {
|
||||
user = {
|
||||
signingkey = "F1A53BC2CC6565EADD7B644FB2E2F4A5161A7800";
|
||||
};
|
||||
commit.gpgsign = true;
|
||||
core.autocrlf = "input";
|
||||
pull.rebase = true;
|
||||
push.autoSetupRemote = true;
|
||||
init.defaultBranch = "main";
|
||||
rerere.enabled = true;
|
||||
};
|
||||
|
||||
nixpkgs.config.allowUnfreePredicate = (pkg: true);
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
|
|
Loading…
Reference in a new issue