1
0
Fork 0
mirror of https://github.com/LnL7/nix-darwin.git synced 2025-03-28 02:37:09 +00:00

enable activate-system serice by default

This commit is contained in:
Daiderd Jordan 2017-07-17 21:44:57 +02:00
parent d049c7b97a
commit 3730fdf15e
No known key found for this signature in database
GPG key ID: D02435D05B810C96
2 changed files with 3 additions and 7 deletions

View file

@ -38,7 +38,7 @@ let
./modules/environment
./modules/launchd
./modules/security
./modules/services/activate-system.nix
./modules/services/activate-system
./modules/services/khd
./modules/services/kwm
./modules/services/chunkwm.nix

View file

@ -3,21 +3,17 @@
with lib;
let
inherit (pkgs) stdenv;
cfg = config.services.activate-system;
in
{
options = {
services.activate-system.enable = mkOption {
type = types.bool;
default = false;
description = ''
Whether to activate system at boot time.
'';
default = true;
description = "Whether to activate system at boot time.";
};
};