adapt to flake-parts

This commit is contained in:
NotAShelf 2023-03-31 18:05:28 +03:00
parent 0a172c02df
commit 114f6499e2
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22

View file

@ -1,15 +1,16 @@
# Home Manager module # Home Manager module
{ {inputs, ...}: {
self, perSystem = {
system,
config, config,
pkgs, pkgs,
lib ? pkgs.lib, lib ? pkgs.lib,
... ...
}: let }:
with lib; let
cfg = config.programs.neovim-flake; cfg = config.programs.neovim-flake;
set = self.packages.maximal {mainConfig = cfg.settings;}; set = self'.packages.maximal {mainConfig = cfg.settings;};
in in {
with lib; {
meta.maintainers = [maintainers.notashelf]; meta.maintainers = [maintainers.notashelf];
options.programs.neovim-flake = { options.programs.neovim-flake = {
@ -42,4 +43,5 @@ in
config = mkIf cfg.enable { config = mkIf cfg.enable {
home.packages = [set.neovim]; home.packages = [set.neovim];
}; };
} };
}