Compare commits

..

13 commits

Author SHA1 Message Date
7ce81b19c7 WIP: ADD NOTE FOR FUTURE SELF
Some checks failed
ci/woodpecker/push/check Pipeline failed
2025-11-06 14:36:04 +00:00
c198a649d3 WIP: 'enableJujutsuIntegration' note 2025-11-06 14:36:04 +00:00
2be2c6ece6 home: jujutsu: set 'home.diff-editor'
Otherwise it keeps nagging me with a hint to set it.

I'm not a big fan of this UI, I wish I add something closer to Git's
patch interface.
2025-11-06 14:36:04 +00:00
68ccb7b048 homes: mousqueton: use system jujutsu
They have a custom `jj` with Piper CitC integration.
2025-11-06 14:36:03 +00:00
39de1ec9d1 homes: bazin: use system jujutsu
They have a custom `jj` with Piper CitC integration.
2025-11-06 14:36:03 +00:00
1ca95441bb home: jujutsu: simplify 'jj jj' alias 2025-11-06 14:36:03 +00:00
d8816ec610 home: jujutsu: explicitly create 'conf.d'
This is to serve as a reminder of _how_ to add a local configuration
file.
2025-11-06 14:36:03 +00:00
316f106c27 home: jj: use verbose draft commit messages 2025-11-06 14:36:03 +00:00
01af844158 home: delta: add 'jujutsu.enable' 2025-11-06 14:36:03 +00:00
07261a78c9 home: add jujutsu
This is a very basic configuration, still missing most bells and
whistles.
2025-11-06 14:36:03 +00:00
95ae669562 home: vim: ftdetect: remove glsl
Some checks failed
ci/woodpecker/push/check Pipeline failed
GLSL is now correctly detected starting with v0.11.

This reverts commit b8b64bed8e.
2025-11-06 14:36:03 +00:00
694deba253 home: vim: do not set 'background' explicitly
Rely on the new behaviour from v0.10 which detects it more
intelligently.
2025-11-06 14:36:03 +00:00
a46f6861f7 flake: bump inputs 2025-11-06 14:36:03 +00:00

View file

@ -1,4 +1,4 @@
{ self, lib, ... }:
{ self, ... }:
let
default-overlays = import "${self}/overlays";
@ -8,7 +8,7 @@ let
# Expose my custom packages
pkgs = _final: prev: {
ambroisie = lib.recurseIntoAttrs (import "${self}/pkgs" { pkgs = prev; });
ambroisie = prev.recurseIntoAttrs (import "${self}/pkgs" { pkgs = prev; });
};
};
in