use pkgs.stdenv.hostPlatform
This commit is contained in:
parent
4af65f3c24
commit
b1b7c4ff8d
3 changed files with 6 additions and 9 deletions
|
@ -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 {
|
||||||
|
|
|
@ -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";
|
||||||
|
|
||||||
|
|
|
@ -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 [];
|
||||||
|
|
Loading…
Add table
Reference in a new issue