aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2022-01-25 23:19:42 +0900
committersefidel <contact@sefidel.net>2022-01-25 23:19:42 +0900
commitc828969fe4b90e157437183d820116b6559ccfaa (patch)
treef511de97808beedc00f65383ee02fdd81e1b9258 /lib
parent6e07d7319c104b23588f6e4f9373cd42dbb73c82 (diff)
downloadnixrc-c828969fe4b90e157437183d820116b6559ccfaa.zip
home: don't enable base automatically
Diffstat (limited to 'lib')
-rw-r--r--lib/mk_home.nix4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/mk_home.nix b/lib/mk_home.nix
index ba1a657..6682d78 100644
--- a/lib/mk_home.nix
+++ b/lib/mk_home.nix
@@ -1,6 +1,6 @@
{ self, home-manager, ... } @ inputs:
-{ username, hostname, system ? "x86_64-linux", pkgs, version, extraModules }:
+{ username, hostname, system ? "x86_64-linux", pkgs, version, extraModules ? null }:
let
entrypoint = "${self}/home/${hostname}/${username}.nix";
in
@@ -14,8 +14,6 @@ home-manager.lib.homeManagerConfiguration {
_module.args.inputs = self.inputs;
_module.args.self = self;
- profiles.base.enable = true;
-
manual = {
html.enable = false;
manpages.enable = false;