mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 09:43:53 +00:00
18 lines
291 B
Nix
18 lines
291 B
Nix
|
{ lib, config, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let cfg = config.module.programs.gui;
|
||
|
in {
|
||
|
options = {
|
||
|
module.programs.gui = {
|
||
|
pkgs = mkOption {
|
||
|
type = lib.types.listOf lib.types.package;
|
||
|
default = null;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = { home.packages = [ ] ++ cfg.pkgs; };
|
||
|
}
|