12 lines
187 B
Nix
12 lines
187 B
Nix
{ pkgs, ... }:
|
|
let
|
|
srcs = import ./srcs.nix;
|
|
in
|
|
{
|
|
imports = [
|
|
./wordclock-dimmer/module.nix
|
|
"${srcs.bang-evaluator}/module.nix"
|
|
"${srcs.aria2_exporter}/module.nix"
|
|
];
|
|
}
|