1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

Replace pkgs.hostPlatform by pkgs.stdenv.hostPlatform

We are attempting to deprecate these top-level attributes in upstream
Nixpkgs.

See also bc0acdad8c.
This commit is contained in:
Ryan Burns 2021-12-02 21:30:34 -08:00 committed by Robert Helgesson
parent 1aaa1a033b
commit 781d25b315
No known key found for this signature in database
GPG key ID: 36BDAA14C2797E89
4 changed files with 6 additions and 6 deletions

View file

@ -36,7 +36,7 @@ let
in {
meta.maintainers = with maintainers; [ midchildan ];
config = mkIf pkgs.hostPlatform.isLinux {
config = mkIf pkgs.stdenv.hostPlatform.isLinux {
# For shell sessions.
home.sessionVariables = localeVars;