Tweaks, additions
parent
73d4f6e00b
commit
0f8e6487d2
|
@ -44,6 +44,7 @@ in
|
||||||
homebrew.masApps = {
|
homebrew.masApps = {
|
||||||
Bitwarden = 1352778147;
|
Bitwarden = 1352778147;
|
||||||
Spark = 1176895641;
|
Spark = 1176895641;
|
||||||
|
Xcode = 497799835;
|
||||||
};
|
};
|
||||||
|
|
||||||
# If an app isn't available in the Mac App Store, or the version in the App Store has
|
# If an app isn't available in the Mac App Store, or the version in the App Store has
|
||||||
|
|
|
@ -77,9 +77,9 @@
|
||||||
exa # fancy version of `ls`
|
exa # fancy version of `ls`
|
||||||
fd # fancy version of `find`
|
fd # fancy version of `find`
|
||||||
htop # fancy version of `top`
|
htop # fancy version of `top`
|
||||||
|
httpie # fancy version of `curl`
|
||||||
hyperfine # benchmarking tool
|
hyperfine # benchmarking tool
|
||||||
mosh # wrapper for `ssh` that better at not dropping connections
|
mosh # wrapper for `ssh` that better at not dropping connections
|
||||||
pijul # alternative to `git`
|
|
||||||
procs # fancy version of `ps`
|
procs # fancy version of `ps`
|
||||||
ripgrep # better version of `grep`
|
ripgrep # better version of `grep`
|
||||||
tealdeer # rust implementation of `tldr`
|
tealdeer # rust implementation of `tldr`
|
||||||
|
@ -91,6 +91,8 @@
|
||||||
# Dev stuff
|
# Dev stuff
|
||||||
cloc # source code line counter
|
cloc # source code line counter
|
||||||
jq # json processor
|
jq # json processor
|
||||||
|
pijul # alternative to `git`
|
||||||
|
rustup # rust toolchain
|
||||||
|
|
||||||
# Useful nix related tools
|
# Useful nix related tools
|
||||||
cachix # adding/managing alternative binary caches hosted by Cachix
|
cachix # adding/managing alternative binary caches hosted by Cachix
|
||||||
|
@ -108,6 +110,10 @@
|
||||||
|
|
||||||
# Misc configuration files --------------------------------------------------------------------{{{
|
# Misc configuration files --------------------------------------------------------------------{{{
|
||||||
|
|
||||||
|
xdg = {
|
||||||
|
enable = true;
|
||||||
|
};
|
||||||
|
|
||||||
# https://docs.haskellstack.org/en/stable/yaml_configuration/#non-project-specific-config
|
# https://docs.haskellstack.org/en/stable/yaml_configuration/#non-project-specific-config
|
||||||
# home.file.".stack/config.yaml".text = lib.generators.toYAML {} {
|
# home.file.".stack/config.yaml".text = lib.generators.toYAML {} {
|
||||||
# templates = {
|
# templates = {
|
||||||
|
|
|
@ -1,3 +1,4 @@
|
||||||
|
# TODO: change color scheme
|
||||||
# Colors from: https://ethanschoonover.com/solarized
|
# Colors from: https://ethanschoonover.com/solarized
|
||||||
# Used in Kitty terminal config: `./kitty-configs.nix`
|
# Used in Kitty terminal config: `./kitty-configs.nix`
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue