Compare commits

..

4 commits

Author SHA1 Message Date
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