diff options
author | sefidel <contact@sefidel.net> | 2022-01-25 23:19:42 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2022-01-25 23:19:42 +0900 |
commit | c828969fe4b90e157437183d820116b6559ccfaa (patch) | |
tree | f511de97808beedc00f65383ee02fdd81e1b9258 /lib/mk_home.nix | |
parent | 6e07d7319c104b23588f6e4f9373cd42dbb73c82 (diff) | |
download | nixrc-c828969fe4b90e157437183d820116b6559ccfaa.tar.gz nixrc-c828969fe4b90e157437183d820116b6559ccfaa.zip |
home: don't enable base automatically
Diffstat (limited to 'lib/mk_home.nix')
-rw-r--r-- | lib/mk_home.nix | 4 |
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; |