8 lines
103 B
Nix
8 lines
103 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./programs/base
|
|
];
|
|
|
|
features.base.enable = lib.mkDefault true;
|
|
}
|