mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 08:43:52 +00:00
23 lines
238 B
Nix
23 lines
238 B
Nix
{
|
|
x,
|
|
lib,
|
|
config,
|
|
...
|
|
}:
|
|
with lib;
|
|
with x;
|
|
let
|
|
cfg = config.module.programs.cli;
|
|
in
|
|
{
|
|
options = {
|
|
module.programs.cli = {
|
|
pkgs = mkOpt.list.pkgs;
|
|
};
|
|
};
|
|
|
|
config = {
|
|
home.packages = [ ] ++ cfg.pkgs;
|
|
};
|
|
}
|