15 lines
342 B
Nix
15 lines
342 B
Nix
{ inputs, ... }: {
|
|
|
|
flake.homeModules.nathan = { config, lib, pkgs, ... }: {
|
|
|
|
config = {
|
|
|
|
home.packages = lib.mkIf (!config.homeconfig.wal.enable) [
|
|
inputs.nixvim.packages.${pkgs.stdenv.hostPlatform.system}.default
|
|
];
|
|
|
|
home.sessionVariables.EDITOR = "nvim";
|
|
};
|
|
};
|
|
}
|