12 lines
270 B
Nix
12 lines
270 B
Nix
{ pkgs, config, lib, ... }:
|
|
{
|
|
options.speccon18.hm.superfile.enable = lib.mkEnableOption "enables specs superfile config";
|
|
|
|
config = lib.mkIf config.speccon18.hm.superfile.enable {
|
|
programs.superfile = {
|
|
enable = true;
|
|
package = pkgs.superfile;
|
|
};
|
|
};
|
|
}
|
|
|