Add ripgrep and emacs

This commit is contained in:
Smaug123
2021-08-29 23:52:22 +01:00
parent 2a8b33a30b
commit cc653f460d
2 changed files with 33 additions and 0 deletions

View File

@@ -166,6 +166,13 @@ let
};
in
let
my-python-packages = python-packages: [
];
python = pkgs.python3.withPackages my-python-packages;
in
{
imports = [ <home-manager/nix-darwin> ];
@@ -181,8 +188,15 @@ in
pkgs.alacritty
pkgs.keepassxc
vscode-with-extensions
python
];
nixpkgs.overlays = [
(import (builtins.fetchTarball {
url = https://github.com/nix-community/emacs-overlay/archive/master.tar.gz;
}))
];
nixpkgs.config.allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
"vscode"
"vscode-with-extensions"