use pkgs.stdenv.hostPlatform

This commit is contained in:
Anthony Cicchetti 2023-08-21 09:39:38 -04:00
parent 4af65f3c24
commit b1b7c4ff8d
3 changed files with 6 additions and 9 deletions

View file

@ -57,10 +57,6 @@
nix-index-database.hmModules.nix-index nix-index-database.hmModules.nix-index
./home.nix ./home.nix
]; ];
extraSpecialArgs = {
system = system;
};
} }
); );
in { in {

View file

@ -1,15 +1,16 @@
{ {
config, config,
pkgs, pkgs,
system,
... ...
}: { }: let
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
in {
# Home Manager needs a bit of information about you and the paths it should # Home Manager needs a bit of information about you and the paths it should
# manage. # manage.
home.username = "acicchetti"; home.username = "acicchetti";
home.homeDirectory = home.homeDirectory =
if "${system}" == "aarch64-darwin" if isDarwin
then "/Users/acicchetti" then "/Users/acicchetti"
else "/home/acicchetti"; else "/home/acicchetti";

View file

@ -2,11 +2,11 @@
pkgs, pkgs,
lib, lib,
config, config,
system,
... ...
}: let }: let
inherit (pkgs.stdenv.hostPlatform) isDarwin isLinux;
systemSpecificPackages = systemSpecificPackages =
if "${system}" != "aarch64-darwin" if isLinux
# include gping because of open bug # include gping because of open bug
then [pkgs.zsh pkgs.racket pkgs.gping pkgs.mold] then [pkgs.zsh pkgs.racket pkgs.gping pkgs.mold]
else []; else [];