11 lines
161 B
Nix
11 lines
161 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
programs.direnv = {
|
||
|
enable = true;
|
||
|
nix-direnv.enable = true;
|
||
|
};
|
||
|
imports = [ ./neovim ];
|
||
|
home.stateVersion = "22.11";
|
||
|
}
|