Home Gen546 @ 2025-10-23-16:42 by jonas@comfy-station

This commit is contained in:
2025-10-23 16:46:12 +02:00
parent de37b2e868
commit 859d0203b2
6 changed files with 47 additions and 22 deletions

View File

@@ -18,6 +18,7 @@
hive.doom.withShellPkgs = true;
hive.doom.withCXXPkgs = true;
hive.doom.withPythonPkgs = true;
hive.jj.enable = true;
# This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release

View File

@@ -1,6 +1,5 @@
{
config,
pkgs,
lib,
...
}: {
@@ -49,6 +48,7 @@
hive.doom.withNixPkgs = true;
hive.doom.withShellPkgs = true;
hive.doom.withPythonPkgs = true;
hive.jj.enable = true;
# Make session variables available in systemd units
# SEE: https://github.com/nix-community/home-manager/pull/5543
@@ -101,17 +101,4 @@
key = "4000EB35E1AE0F07";
};
};
programs.jujutsu = {
enable = true;
settings = {
user = {
name = config.programs.git.userName;
email = config.programs.git.userEmail;
};
ui = {
diff-formatter = ["${pkgs.difftastic}/bin/difft" "--color=always" "$left" "$right"];
};
};
};
}

View File

@@ -33,6 +33,7 @@
hive.themes.layan.enable = true;
hive.yubikey.enable = true;
hive.zsh.enable = true;
hive.jj.enable = true;
# Make session variables available in systemd units
# SEE: https://github.com/nix-community/home-manager/pull/5543