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" ''
|
||||
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 "ghostty")
|
||||
(flake.pkg "jj")
|
||||
]
|
||||
++ (with pkgs; [
|
||||
sops
|
||||
|
@ -16,6 +15,5 @@
|
|||
typst
|
||||
charm-freeze
|
||||
attic-client
|
||||
# jujutsu
|
||||
]);
|
||||
}
|
||||
|
|
|
@ -1,12 +1,17 @@
|
|||
{ pkgs, ... }:
|
||||
{ pkgs, flake, ... }:
|
||||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
environment.systemPackages =
|
||||
[
|
||||
# not technically git ¯\_(ツ)_/¯
|
||||
(flake.pkg "jj")
|
||||
|
||||
]
|
||||
++ (with pkgs; [
|
||||
git
|
||||
git-lfs
|
||||
|
||||
gh
|
||||
lazygit
|
||||
delta
|
||||
jujutsu
|
||||
];
|
||||
]);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue