18
flake.lock
generated
18
flake.lock
generated
@@ -132,11 +132,11 @@
|
|||||||
"homebrew-cask": {
|
"homebrew-cask": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1755343188,
|
"lastModified": 1755363579,
|
||||||
"narHash": "sha256-CF0u/F0NzJtnQjYdJPt1JcXDdze4CL3R7s23CUjq/jg=",
|
"narHash": "sha256-EbaVz2Ky94YR/tV74wSqpzE6A9F38x7nzvMSEBWBMI4=",
|
||||||
"owner": "homebrew",
|
"owner": "homebrew",
|
||||||
"repo": "homebrew-cask",
|
"repo": "homebrew-cask",
|
||||||
"rev": "9862cf5e80f63df883cebce3b8e23008dc1345c9",
|
"rev": "d2d4d62c4b32b98c0d13b02c265294e3a6039999",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -148,11 +148,11 @@
|
|||||||
"homebrew-core": {
|
"homebrew-core": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1755345283,
|
"lastModified": 1755366498,
|
||||||
"narHash": "sha256-gnhhnOVdoT0JwBQiecvNb69WiG9maj4DCPIeZL/1bvA=",
|
"narHash": "sha256-uycxkawaZZNbCwsV8/8RT8psKwPs2OTIVoB641bEnp4=",
|
||||||
"owner": "homebrew",
|
"owner": "homebrew",
|
||||||
"repo": "homebrew-core",
|
"repo": "homebrew-core",
|
||||||
"rev": "c98187537806a121bc373241d6f25d1150e9742c",
|
"rev": "d54e22d2d830e5eabc683df017bca7292759e1fe",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -240,11 +240,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_2": {
|
"nixpkgs_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1755346686,
|
"lastModified": 1755367460,
|
||||||
"narHash": "sha256-Vok1zy+LkZM8J/ki74SXMIyN0aFanBnjYSUqn0bN92Y=",
|
"narHash": "sha256-mPqAxaRmojCHOd8qpLUOxk7BfTRsNCAXHfnsCmploFs=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "5df4afd7ef7c3d75be5b4c4f80b6b617aa5f7b2a",
|
"rev": "a05a770b952a7042dd1741830fc5c2fe5cf34cd7",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -4,19 +4,20 @@
|
|||||||
...
|
...
|
||||||
}: {
|
}: {
|
||||||
imports = [
|
imports = [
|
||||||
./fish.nix
|
|
||||||
./starship.nix
|
|
||||||
./zsh.nix
|
|
||||||
./atuin.nix
|
./atuin.nix
|
||||||
./bat.nix
|
./bat.nix
|
||||||
./eza.nix
|
./eza.nix
|
||||||
|
./fish.nix
|
||||||
./git.nix
|
./git.nix
|
||||||
./lazygit.nix
|
./lazygit.nix
|
||||||
./mise.nix
|
./mise.nix
|
||||||
|
./neovim
|
||||||
|
./ripgrep.nix
|
||||||
./ssh.nix
|
./ssh.nix
|
||||||
|
./starship.nix
|
||||||
./zellij.nix
|
./zellij.nix
|
||||||
./zoxide.nix
|
./zoxide.nix
|
||||||
./neovim
|
./zsh.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|||||||
21
modules/home/ripgrep.nix
Normal file
21
modules/home/ripgrep.nix
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
programs.ripgrep = {
|
||||||
|
enable = true;
|
||||||
|
arguments = [
|
||||||
|
"--max-columns=150"
|
||||||
|
"--max-columns-preview"
|
||||||
|
"--smart-case"
|
||||||
|
"--colors=column:none"
|
||||||
|
"--colors=column:fg:4"
|
||||||
|
"--colors=column:style:underline"
|
||||||
|
"--colors=line:none"
|
||||||
|
"--colors=line:fg:4"
|
||||||
|
"--colors=match:none"
|
||||||
|
"--colors=match:bg:0"
|
||||||
|
"--colors=match:fg:6"
|
||||||
|
"--colors=path:none"
|
||||||
|
"--colors=path:fg:14"
|
||||||
|
"--colors=path:style:bold"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -13,21 +13,17 @@ with pkgs; [
|
|||||||
iosevka
|
iosevka
|
||||||
jq
|
jq
|
||||||
killall
|
killall
|
||||||
libfido2
|
|
||||||
nodejs_24
|
|
||||||
nurl
|
nurl
|
||||||
opencode
|
opencode
|
||||||
openssh
|
openssh
|
||||||
postgresql_17
|
postgresql_17
|
||||||
prettier
|
prettier
|
||||||
python312
|
python312
|
||||||
ripgrep
|
|
||||||
sops
|
sops
|
||||||
sqlite
|
sqlite
|
||||||
tree
|
tree
|
||||||
tree-sitter
|
tree-sitter
|
||||||
unzip
|
unzip
|
||||||
vivid
|
vivid
|
||||||
wget
|
|
||||||
zip
|
zip
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user