use config.packages

This commit is contained in:
NotAShelf 2023-03-31 18:17:06 +03:00
parent 1ba910f8de
commit c818cc108e
No known key found for this signature in database
GPG key ID: F0D14CCB5ED5AA22

View file

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