6 lines
119 B
Nix
6 lines
119 B
Nix
{ lib, config, ... }:
|
|
with lib;
|
|
{
|
|
programs.helix.settings = mkIf config.programs.helix.enable { theme = "nord"; };
|
|
}
|