27 lines
352 B
Nix
Executable file
27 lines
352 B
Nix
Executable file
{ outputs
|
|
, ...
|
|
}:
|
|
let
|
|
modules = outputs.homeManagerModules;
|
|
in
|
|
{
|
|
imports = [
|
|
modules.editors
|
|
modules.shells
|
|
|
|
./git.nix
|
|
];
|
|
|
|
custom = {
|
|
editors = {
|
|
defaultEditor = "helix";
|
|
helix.enable = true;
|
|
};
|
|
|
|
shells = {
|
|
fish.enable = true;
|
|
direnv.enable = true;
|
|
zellij.enable = true;
|
|
};
|
|
};
|
|
}
|