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