refactor: add comment and move inherit
parent
4328c77625
commit
1dee671b98
|
@ -1,8 +1,9 @@
|
||||||
{ config, lib, pkgs, inputs, ... }:
|
{ config, lib, pkgs, inputs, ... }:
|
||||||
|
|
||||||
let
|
let
|
||||||
cfg = config.my.programs.nvim;
|
|
||||||
inherit (lib) mkEnableOption mkIf readFile;
|
inherit (lib) mkEnableOption mkIf readFile;
|
||||||
|
|
||||||
|
cfg = config.my.programs.nvim;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = lib.my.listModulesRec ./plugins;
|
imports = lib.my.listModulesRec ./plugins;
|
||||||
|
@ -17,10 +18,9 @@ in
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [
|
home.packages = with pkgs; [
|
||||||
xdotool
|
xdotool # for vimtex
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
|
package = inputs.neovim-nightly-overlay.packages.${pkgs.system}.default;
|
||||||
|
|
Loading…
Reference in New Issue