Skip to content

Commit bc5ae80

Browse files
committed
all: remove graphite-cli
1 parent 8e986f4 commit bc5ae80

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

devShells/default.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ in
4141
inherit inputs pkgs;
4242
modules = [
4343
({ pkgs, lib, ... }: {
44-
packages = [ pkgs.graphite-cli ];
44+
packages = [ ];
4545
languages = {
4646
javascript.enable = true;
4747
javascript.package = pkgs.nodejs_22;

home/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"$HOME/.local/bin"
2222
];
2323

24-
packages = [ pkgs.graphite-cli ];
24+
packages = [ ];
2525
stateVersion = "24.11";
2626
};
2727
})
@@ -60,7 +60,7 @@
6060
"$HOME/.local/bin"
6161
];
6262

63-
packages = [ pkgs.graphite-cli ];
63+
packages = [ ];
6464
stateVersion = "24.11";
6565
};
6666
})

home/modules/zsh.nix

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
{ pkgs, ... }:
22

3-
let
4-
gt = "${pkgs.graphite-cli}/bin/gt";
5-
in
63
{
74
programs.direnv.enableZshIntegration = true;
85
home.shell.enableZshIntegration = true;
@@ -13,11 +10,7 @@ in
1310
history.save = 1000000000;
1411

1512
autosuggestion.enable = true;
16-
shellAliases = {
17-
giss = "npm i && ${gt} sync && ${gt} submit";
18-
gss = "${gt} sync && ${gt} submit";
19-
gmss = "${gt} modify -a && ${gt} sync && ${gt} submit";
20-
};
13+
shellAliases = { };
2114

2215
initContent = ''
2316
export NVM_DIR="$HOME/.nvm"

0 commit comments

Comments
 (0)