nixos-config/modules/systemd/default.nix

18 lines
312 B
Nix
Raw Normal View History

2024-02-05 11:46:52 +01:00
{ config, lib, ... }:
with lib;
let
2022-03-01 22:19:03 +01:00
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;
2024-01-10 21:55:23 +01:00
llmnr = "false"; # Deprecated and a security risk
2021-12-06 09:58:39 +01:00
};
};
}