only use flake jj

This commit is contained in:
Daylin Morgan 2024-12-06 10:42:23 -06:00
parent f2226b361e
commit e769a41faa
Signed by: daylin
GPG key ID: 950D13E9719334AD
3 changed files with 14 additions and 12 deletions

View file

@ -4,6 +4,5 @@
(writeShellScriptBin "gitea" '' (writeShellScriptBin "gitea" ''
ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@" ssh -p 2222 -o StrictHostKeyChecking=no git@127.0.0.1 "SSH_ORIGINAL_COMMAND=\"$SSH_ORIGINAL_COMMAND\" $0 $@"
'') '')
jujutsu
]; ];
} }

View file

@ -4,7 +4,6 @@
[ [
(flake.pkg "utils") (flake.pkg "utils")
(flake.pkg "ghostty") (flake.pkg "ghostty")
(flake.pkg "jj")
] ]
++ (with pkgs; [ ++ (with pkgs; [
sops sops
@ -16,6 +15,5 @@
typst typst
charm-freeze charm-freeze
attic-client attic-client
# jujutsu
]); ]);
} }

View file

@ -1,12 +1,17 @@
{ pkgs, ... }: { pkgs, flake, ... }:
{ {
environment.systemPackages = with pkgs; [ environment.systemPackages =
git [
git-lfs # not technically git ¯\_(ツ)_/¯
(flake.pkg "jj")
gh ]
lazygit ++ (with pkgs; [
delta git
jujutsu git-lfs
];
gh
lazygit
delta
]);
} }