nixos-config/modules/workstation/home-manager/helix.nix

8 lines
125 B
Nix
Raw Normal View History

2024-02-10 14:19:30 +01:00
{ lib, config, ... }:
with lib;
{
programs.helix.settings = mkIf config.programs.helix.enable {
theme = "nord";
};
}