8 lines
107 B
Nix
8 lines
107 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./services/system
|
|
];
|
|
|
|
features.system.enable = lib.mkDefault true;
|
|
}
|