nix-on-droid.nix.default: fix the overlays inheritance of the home-manager config

This commit is contained in:
Shamrock Lee 2021-09-11 14:10:06 +08:00 committed by Alexander Sosedkin
parent 3b4fd630ae
commit 5c838f508b

View file

@ -35,13 +35,13 @@
# nix-channel --update # nix-channel --update
# you can configure home-manager in here like # you can configure home-manager in here like
#home-manager.config = #home-manager.config =
# { pkgs, ... }: # { pkgs, lib, ... }:
# { # {
# # Read the changelog before changing this value # # Read the changelog before changing this value
# home.stateVersion = "21.05"; # home.stateVersion = "21.05";
# #
# # Use the same overlays as the system packages # # Use the same overlays as the system packages
# nixpkgs.overlays = config.nixpkgs.overlays; # nixpkgs.overlays = lib.mkIf (lib.hasAttrByPath [ "nixpkgs" "overlays" ] config) config.nixpkgs.overlays;
# #
# # insert home-manager config # # insert home-manager config
# }; # };