Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
imports = [
./lib

./pkgs
./modules/packages

./modules/overlays

Expand Down
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion pkgs/nix-docker.nix → modules/packages/nix-docker.nix
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, lib }:

stdenv.mkDerivation rec {
stdenv.mkDerivation {
name = "nix-docker";

src = fetchFromGitHub {
Expand Down
4 changes: 2 additions & 2 deletions pkgs/oh-my-tmux.nix → modules/packages/oh-my-tmux.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ stdenv.mkDerivation {
# preceding dot, so use fetchTarball instead
src = builtins.fetchTarball {
url =
"https://github.com/gpakosz/.tmux/archive/1ef77d21420ca3d849714e46b625e2bdb1f53b94.tar.gz";
sha256 = "1vdyr305v4y22jdhpxk6lz7206rxlvg2vysqf80pb7jcnbfymjz0";
"https://github.com/gpakosz/.tmux/archive/87dcd13a28aeb5f18baee630e24b3f5765ae3a4f.tar.gz";
sha256 = "sha256-rfJkL4EMMunbC7wGiw7O/1E/0XTzA2N+RR7gXEoalAY=";
};

phases = [ "unpackPhase" "installPhase" ];
Expand Down
4 changes: 4 additions & 0 deletions modules/profiles/home/zed-editor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@
diagnostics = false;
metrics = false;
};

# AI
show_completions_on_input = false;
show_edit_predictions = false;
};
};
}