diff options
Diffstat (limited to 'modules/home-manager.nix')
-rw-r--r-- | modules/home-manager.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/modules/home-manager.nix b/modules/home-manager.nix new file mode 100644 index 00000000..9c259381 --- /dev/null +++ b/modules/home-manager.nix | |||
@@ -0,0 +1,13 @@ | |||
1 | { lib, ... }: | ||
2 | |||
3 | with lib; | ||
4 | |||
5 | { | ||
6 | options = { | ||
7 | home-manager.enableSystemd = mkOption { | ||
8 | type = types.bool; | ||
9 | default = false; | ||
10 | example = true; | ||
11 | }; | ||
12 | }; | ||
13 | } | ||