diff options
| author | Michael Hoang <Enzime@users.noreply.github.com> | 2024-11-16 14:42:50 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-11-16 14:42:50 +0000 |
| commit | 2bcef10f4319f34ddebadb5f37eaa81ca2510730 (patch) | |
| tree | 64928f05e87848dddf2d6530a5a470ec19f49f65 /modules/services | |
| parent | f86f158efd4bab8dce3e207e4621f1df3a760b7a (diff) | |
| parent | ec5fce6061c26095f6de3a9cb9398171aa3b8c86 (diff) | |
Merge pull request #1164 from Enzime/push-yyusnrnkwkxu
nix-daemon: enable by default
Diffstat (limited to 'modules/services')
| -rw-r--r-- | modules/services/nix-daemon.nix | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/services/nix-daemon.nix b/modules/services/nix-daemon.nix index 6718ac0..ffc7e65 100644 --- a/modules/services/nix-daemon.nix +++ b/modules/services/nix-daemon.nix @@ -1,16 +1,16 @@ -{ config, lib, pkgs, ... }: - -with lib; +{ config, lib, ... }: let cfg = config.services.nix-daemon; + + inherit (lib) mkDefault mkIf mkMerge mkOption types; in { options = { services.nix-daemon.enable = mkOption { type = types.bool; - default = false; + default = true; description = "Whether to enable the nix-daemon service."; }; |
