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" ''
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 "ghostty")
(flake.pkg "jj")
]
++ (with pkgs; [
sops
@ -16,6 +15,5 @@
typst
charm-freeze
attic-client
# jujutsu
]);
}

View file

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