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

6 lines
119 B
Nix
Raw Normal View History

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