Compare commits

..

1 commit

Author SHA1 Message Date
b4d8460621
add zk
Signed-off-by: gwg313 <gwg313@pm.me>
2026-04-16 01:54:09 -04:00
4 changed files with 2 additions and 122 deletions

View file

@ -76,7 +76,6 @@
];
developer.features = [
"jujutsu"
"developer-cli"
"editor-neovim"
"containers-podman"

View file

@ -8,7 +8,7 @@
enable = true;
package = pkgs.pass.withExtensions (exts: [ exts.pass-otp ]);
settings = {
PASSWORD_STORE_DIR = "$HOME/.local/share/password-store";
PASSWORD_STORE_DIR = "$XDG_DATA_HOME/password-store";
};
};

View file

@ -2,7 +2,7 @@
{
config.dendritic.features.zk.homeModules = [
(
{ ... }:
{ pkgs, ... }:
{
home.sessionVariables = {

View file

@ -1,119 +0,0 @@
{ ... }:
{
config.dendritic.features.jujutsu = {
homeModules = [
(
{ pkgs, ... }:
{
programs.jujutsu = {
enable = true;
settings = {
user = {
email = "gwg313@pm.me";
name = "gwg313";
};
signing = {
behavior = "own";
backend = "gpg";
};
aliases = {
c = [ "commit" ];
ci = [
"commit"
"--interactive"
];
e = [ "edit" ];
i = [
"git"
"init"
"--colocate"
];
tug = [
"bookmark"
"move"
"--from"
"closest_bookmark(@-)"
"--to"
"@-"
];
log-recent = [
"log"
"-r"
"default() & recent()"
];
nb = [
"bookmark"
"create"
"-r"
"@-"
]; # new bookmark
upmain = [
"bookmark"
"set"
"main"
];
squash-desc = [
"squash"
"::@"
"-d"
"@"
];
rebase-main = [
"rebase"
"-d"
"main"
];
amend = [
"describe"
"-m"
];
pushall = [
"git"
"push"
"--all"
];
push = [
"git"
"push"
"--allow-new"
];
pull = [
"git"
"fetch"
];
dmain = [
"diff"
"-r"
"main"
];
l = [
"log"
"-T"
"builtin_log_compact"
];
lf = [
"log"
"-r"
"all()"
];
r = [ "rebase" ];
s = [ "squash" ];
si = [
"squash"
"--interactive"
];
};
};
};
home.packages = with pkgs; [
lazyjj
meld
];
}
)
];
};
}