Compare commits

..

14 commits

Author SHA1 Message Date
2944a7c4da WIP: ADD NOTE FOR FUTURE SELF
Some checks failed
ci/woodpecker/push/check Pipeline failed
2025-11-06 14:40:26 +00:00
2c9b37881a WIP: 'enableJujutsuIntegration' note 2025-11-06 14:40:26 +00:00
3a4031adff 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:40:26 +00:00
e9833bdc92 homes: mousqueton: use system jujutsu
They have a custom `jj` with Piper CitC integration.
2025-11-06 14:40:26 +00:00
441bd25f97 homes: bazin: use system jujutsu
They have a custom `jj` with Piper CitC integration.
2025-11-06 14:40:26 +00:00
87238d099e home: jujutsu: simplify 'jj jj' alias 2025-11-06 14:40:26 +00:00
6b2fab2226 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:40:26 +00:00
886212526a home: jj: use verbose draft commit messages 2025-11-06 14:40:26 +00:00
7b987b9475 home: delta: add 'jujutsu.enable' 2025-11-06 14:40:26 +00:00
c74015c6ea home: add jujutsu
This is a very basic configuration, still missing most bells and
whistles.
2025-11-06 14:40:26 +00:00
c6176c4d92 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:40:26 +00:00
125764fa5a home: vim: do not set 'background' explicitly
Rely on the new behaviour from v0.10 which detects it more
intelligently.
2025-11-06 14:40:26 +00:00
71f7cf0790 flake: bump inputs 2025-11-06 14:40:26 +00:00
41c506749e flake: overlays: use 'lib'
It's a `lib` function, not _really_ a Nixpkgs one.

Also it's about to break after the next flake update :-).
2025-11-06 14:40:26 +00:00

View file

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