nixos/hosts/makise/homes/kurisu/configuration/default.nix
2026-01-11 01:42:54 +00:00

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;
};
};
}