mirror of
https://github.com/kogakure/dotfiles.git
synced 2026-02-03 20:25:30 +00:00
feat(nix): migrate the_silver_searcher
This commit is contained in:
@@ -13,7 +13,6 @@
|
||||
- ~/.gnupg
|
||||
|
||||
- link:
|
||||
~/.ag: search/ag
|
||||
~/.asdfrc: asdf/asdfrc
|
||||
~/.config/base16-shell: .base16-shell
|
||||
~/.config/bat: bat
|
||||
|
||||
2
Brewfile
2
Brewfile
@@ -397,8 +397,6 @@ brew "superfile"
|
||||
brew "svgo"
|
||||
# Open source continuous file synchronization application
|
||||
brew "syncthing"
|
||||
# Code-search similar to ack
|
||||
brew "the_silver_searcher"
|
||||
# Text interface for Git repositories
|
||||
brew "tig"
|
||||
# Simplified and community-driven man pages
|
||||
|
||||
@@ -2,4 +2,3 @@
|
||||
log
|
||||
tags
|
||||
tmp
|
||||
|
||||
11
nix/home/ag/default.nix
Normal file
11
nix/home/ag/default.nix
Normal file
@@ -0,0 +1,11 @@
|
||||
{ pkgs, ... }:
|
||||
|
||||
{
|
||||
home.file.".ag" = {
|
||||
source = ./ag;
|
||||
};
|
||||
|
||||
home.packages = [
|
||||
pkgs.silver-searcher
|
||||
];
|
||||
}
|
||||
@@ -7,6 +7,7 @@ in
|
||||
# https://nix-community.github.io/home-manager/options.html
|
||||
imports = [
|
||||
./ack
|
||||
./ag
|
||||
./ripgrep
|
||||
./skhd
|
||||
./yabai
|
||||
|
||||
Reference in New Issue
Block a user