All checks were successful
Run pre-commit on all files / pre-commit (push) Successful in 22s
12 lines
235 B
Nix
12 lines
235 B
Nix
# SPDX-FileCopyrightText: 2024 Ryan Lahfa <ryan.lahfa@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
|
|
{ config, ... }:
|
|
let
|
|
svc = config.system.service;
|
|
in
|
|
{
|
|
# ubus socket for various needs.
|
|
services.ubus = svc.ubus.build { };
|
|
}
|