nixos-config/modules/systemd/default.nix

20 lines
265 B
Nix
Raw Normal View History

{ pkgs
, config
, lib
, ...
2022-03-01 22:19:03 +01:00
}:
with lib; let
cfg = config.eboskma.systemd;
in
{
2021-12-06 09:58:39 +01:00
options.eboskma.systemd = {
enable = mkEnableOption "activate systemd settings";
};
2022-05-03 18:17:38 +02:00
config = mkIf cfg.enable {
2021-12-06 09:58:39 +01:00
services.resolved = {
enable = true;
};
};
}