You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
604 B
Lua
24 lines
604 B
Lua
package.path = package.path .. ";../?.lua"
|
|
local silo = require 'silo'
|
|
local sutils = require "silo-utils"
|
|
|
|
local config = sutils.enhance_dircfg {
|
|
path = silo.dirs.config,
|
|
mode = "exclude",
|
|
exclude = {},
|
|
}
|
|
|
|
config:needs("broot", "broot")
|
|
config:needs("firecfg", "firejail")
|
|
config:needs("btm", "bottom")
|
|
config:needs("helix", "helix")
|
|
config:needs("home-manager", "home-manager")
|
|
config:needs("nix", "nixpkgs")
|
|
config:needs("nu", "nushell")
|
|
config:needs("systemctl", "systemd")
|
|
config:needs("wezterm", "wezterm")
|
|
config:needs("zellij", "zellij")
|
|
config:needs("starship", "starship")
|
|
|
|
return config
|