jj: use jj flake directly

This commit is contained in:
Daniel Lundin 2025-01-03 14:01:39 +01:00
parent 5032e07ee9
commit 6dd68098e0
Signed by: dln
SSH key fingerprint: SHA256:dQy1Xj3UiqJYpKR5ggQ2bxgz4jCH8IF+k3AB8o0kmdI
6 changed files with 125 additions and 3967 deletions
home/common

View file

@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, inputs, pkgs, ... }:
{
home.packages = with pkgs; [
@ -169,6 +169,6 @@
programs.jujutsu = {
enable = true;
package = pkgs.jujutsu-openssh;
package = inputs.jujutsu.packages.${pkgs.system}.default;
};
}