Files
nixcfg/users/configs/system/helix/default.nix
2026-03-21 22:32:33 +00:00

11 lines
183 B
Nix

{inputs, pkgs, ...}: {
home.packages = [
inputs.expert.packages.${pkgs.system}.default
];
home.file.".config/helix" = {
source = ./config;
recursive = true;
};
}