Tiny fixes, add mullvadvpn
parent
5e51d850e7
commit
4842d9c8fc
|
@ -58,6 +58,7 @@ in
|
|||
"knockknock"
|
||||
"lagrange"
|
||||
"lulu"
|
||||
"mullvadvpn"
|
||||
"rectangle"
|
||||
"signal"
|
||||
"steam"
|
||||
|
@ -70,5 +71,5 @@ in
|
|||
|
||||
# For cli packages that aren't currently available for macOS in `nixpkgs`.Packages should be
|
||||
# installed in `../home/default.nix` whenever possible.
|
||||
homebrew.brews = [ "unison-language" ];
|
||||
homebrew.brews = [ "fzf" "unison-language" ];
|
||||
}
|
||||
|
|
21
flake.nix
21
flake.nix
|
@ -26,17 +26,16 @@
|
|||
# Configuration for `nixpkgs`
|
||||
nixpkgsConfig = {
|
||||
config = { allowUnfree = true; };
|
||||
# overlays = attrValues self.overlays;
|
||||
overlays = attrValues self.overlays ++ singleton (
|
||||
# Sub in x86 version of packages that don't build on Apple Silicon yet
|
||||
final: prev: (optionalAttrs (prev.stdenv.system == "aarch64-darwin") {
|
||||
inherit (final.pkgs-x86)
|
||||
# idris2
|
||||
# nix-index
|
||||
# purescript;
|
||||
niv;
|
||||
})
|
||||
);
|
||||
overlays = attrValues self.overlays;
|
||||
# overlays = attrValues self.overlays ++ singleton (
|
||||
# # Sub in x86 version of packages that don't build on Apple Silicon yet
|
||||
# final: prev: (optionalAttrs (prev.stdenv.system == "aarch64-darwin") {
|
||||
# inherit (final.pkgs-x86)
|
||||
# idris2
|
||||
# nix-index
|
||||
# purescript;
|
||||
# })
|
||||
# );
|
||||
};
|
||||
|
||||
# Shared home-manager configs
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
# fancy shell history
|
||||
# https://rycee.gitlab.io/home-manager/options.html#opt-programs.atuin.enable
|
||||
atuin = {
|
||||
enable = true;
|
||||
enable = false;
|
||||
settings = { };
|
||||
};
|
||||
# a nicer cat
|
||||
|
@ -58,11 +58,6 @@
|
|||
};
|
||||
};
|
||||
interactiveShellInit = ''
|
||||
# Init atuin
|
||||
atuin init fish | source
|
||||
bind -M insert -k up _atuin_search
|
||||
bind -M insert \eOA _atuin_search
|
||||
bind -M insert \e\[A _atuin_search
|
||||
# Set `bat` colors based on value of `$term_backdround` when shell starts up.
|
||||
set-bat-colors
|
||||
'';
|
||||
|
@ -83,7 +78,7 @@
|
|||
fd # fancy version of `find`
|
||||
htop # fancy version of `top`
|
||||
hyperfine # benchmarking tool
|
||||
mosh # wrapper for `ssh` that better and not dropping connections
|
||||
mosh # wrapper for `ssh` that better at not dropping connections
|
||||
pijul # alternative to `git`
|
||||
procs # fancy version of `ps`
|
||||
ripgrep # better version of `grep`
|
||||
|
|
Loading…
Reference in New Issue