11 lines
182 B
Nix
11 lines
182 B
Nix
|
{ config, lib, pkgs, inputs, ... }:
|
||
|
|
||
|
let
|
||
|
inherit (lib) mkEnableOption mkIf readFile;
|
||
|
in
|
||
|
{
|
||
|
home-manager.users.moritz.programs.nixvim = {
|
||
|
plugins.lualine.enable = true;
|
||
|
};
|
||
|
}
|