enable home manager by default

This commit is contained in:
Osman Faruk Bayram 2025-10-21 16:40:37 +03:00
parent 157453cd8d
commit 59378f866e

View file

@ -44,7 +44,7 @@
homeManager = { homeManager = {
enable = lib.mkOption { enable = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = true;
description = "Enable home-manager integration"; description = "Enable home-manager integration";
}; };
}; };