7 lines
148 B
Nix
7 lines
148 B
Nix
|
{ config, pkgs, lib, inputs, system, ... }: {
|
||
|
programs.helix = {
|
||
|
enable = true;
|
||
|
package = inputs.helix.packages."${system}".helix;
|
||
|
};
|
||
|
}
|