mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 01:50:44 -06:00
only use flake jj
This commit is contained in:
parent
f2226b361e
commit
e769a41faa
3 changed files with 14 additions and 12 deletions
|
@ -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
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue