|
|
@ -70,7 +70,6 @@ |
|
|
|
wget |
|
|
|
wget |
|
|
|
ffmpeg |
|
|
|
ffmpeg |
|
|
|
gnupg |
|
|
|
gnupg |
|
|
|
git |
|
|
|
|
|
|
|
jq |
|
|
|
jq |
|
|
|
tmux |
|
|
|
tmux |
|
|
|
htop |
|
|
|
htop |
|
|
@ -114,11 +113,29 @@ |
|
|
|
# Let Home Manager install and manage itself. |
|
|
|
# Let Home Manager install and manage itself. |
|
|
|
programs.home-manager.enable = true; |
|
|
|
programs.home-manager.enable = true; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
programs.git = { |
|
|
|
|
|
|
|
package = pkgs.gitFull; |
|
|
|
|
|
|
|
enable = true; |
|
|
|
|
|
|
|
userName = "Elias Almqvist"; |
|
|
|
|
|
|
|
userEmail = "elalmqvist@gmail.com"; |
|
|
|
|
|
|
|
lfs.enable = true; |
|
|
|
|
|
|
|
ignores = [ |
|
|
|
|
|
|
|
".dir-locals.el" |
|
|
|
|
|
|
|
".envrc" |
|
|
|
|
|
|
|
".DS_Store" |
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
signing.signByDefault = true; |
|
|
|
|
|
|
|
signing.key = "E31A99CE3E75A158"; |
|
|
|
|
|
|
|
extraConfig = { |
|
|
|
|
|
|
|
commit.gpgsign = true; |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
programs.zsh = { |
|
|
|
programs.zsh = { |
|
|
|
enable = true; |
|
|
|
enable = true; |
|
|
|
oh-my-zsh = { |
|
|
|
oh-my-zsh = { |
|
|
|
enable = true; |
|
|
|
enable = true; |
|
|
|
theme = "lambda"; |
|
|
|
theme = "half-life"; |
|
|
|
plugins = [ "git" "macos" ]; |
|
|
|
plugins = [ "git" "macos" ]; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|
}; |
|
|
|