21 lines
311 B
Nix
21 lines
311 B
Nix
|
{ lib, pkgs, ... }:
|
||
|
|
||
|
lib.extra.mkConfig {
|
||
|
enabledModules = [
|
||
|
# List of modules to enable
|
||
|
];
|
||
|
|
||
|
enabledServices = [
|
||
|
# List of services to enable
|
||
|
"network"
|
||
|
];
|
||
|
|
||
|
extraConfig = {
|
||
|
services.netbird.enable = true;
|
||
|
|
||
|
environment.systemPackages = [ pkgs.bcachefs-tools ];
|
||
|
};
|
||
|
|
||
|
root = ./.;
|
||
|
}
|