Files
flocon/home-manager/helix.nix
Romain Paquet 3144febfad rename "home" directory to "home-manager"
My dotfiles will be moved to the "home" directory later
2025-06-10 21:32:23 +02:00

13 lines
210 B
Nix

{ config, pkgs, ... }:
{
home.packages = [ pkgs.helix ];
programs.helix = {
enable = true;
defaultEditor = true;
};
xdg.configFile."helix".source = "${config.dotfiles.path}/.config/helix";
}