This commit is contained in:
2026-04-22 14:51:39 -05:00
parent cbebf1639f
commit c6b84a7c49
4 changed files with 60 additions and 25 deletions

View File

@@ -0,0 +1,16 @@
{ inputs, ... }: {
flake.homeModules.nathan-terminal = { config, lib, pkgs, ... }: {
imports = [
inputs.nixvim.homeModules.default
];
config = {
programs.moirai = {
enable = true;
defaultEditor = true;
};
};
};
}