18 lines
258 B
Nix
18 lines
258 B
Nix
{ config
|
|
, lib
|
|
, ...
|
|
}:
|
|
with lib; let
|
|
cfg = config.eboskma.systemd;
|
|
in
|
|
{
|
|
options.eboskma.systemd = {
|
|
enable = mkEnableOption "activate systemd settings";
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
services.resolved = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|