diff --git a/modules/home-manager/default.nix b/modules/home-manager/default.nix index 695d4300f..0a2cec4d2 100644 --- a/modules/home-manager/default.nix +++ b/modules/home-manager/default.nix @@ -1,9 +1,3 @@ -# docs: -# https://rycee.gitlab.io/home-manager/ -# https://rycee.gitlab.io/home-manager/options.html -# man home-configuration.nix -# - { lib, config, pkgs, ... }: with lib; @@ -17,26 +11,4 @@ in type = types.bool; }; }; - - config = lib.mkIf cfg.enable { - home-manager.useGlobalPkgs = true; - home-manager.useUserPackages = true; - - home-manager.users.colin = { - - # run `home-manager-help` to access manpages - # or `man home-configuration.nix` - manual.html.enable = false; # TODO: set to true later (build failure) - manual.manpages.enable = false; # TODO: enable after https://github.com/nix-community/home-manager/issues/3344 - - home.stateVersion = "21.11"; - home.username = "colin"; - home.homeDirectory = "/home/colin"; - - programs = { - # XXX: unsure what this does? - home-manager.enable = true; - }; - }; - }; }