8 lines
108 B
Nix
8 lines
108 B
Nix
|
{ inputs, config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
imports = [
|
||
|
(./common.nix { inherit inputs config pkgs; })
|
||
|
];
|
||
|
}
|