mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-08 17:23:53 +00:00
11 lines
207 B
Nix
11 lines
207 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; };
|
|
}
|