added superfile to homemanager

This commit is contained in:
steven carpenter 2025-07-19 11:56:29 -04:00
parent fb8665ef70
commit 54eb941306
5 changed files with 23 additions and 7 deletions

View file

@ -0,0 +1,12 @@
{ 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;
};
};
}