From 747cc83258a9d9300a299789a9950a16c1f881be Mon Sep 17 00:00:00 2001 From: Anthony Cicchetti Date: Sun, 28 May 2023 21:42:59 -0400 Subject: [PATCH] fix homepath --- flake.lock | 6 +++--- nix/home-manager/flake.lock | 6 +++--- nix/home-manager/flake.nix | 4 ++++ nix/home-manager/home.nix | 6 +++++- nix/update.sh | 2 +- 5 files changed, 16 insertions(+), 8 deletions(-) diff --git a/flake.lock b/flake.lock index 8c97d22..f33e9f7 100644 --- a/flake.lock +++ b/flake.lock @@ -164,11 +164,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1685043448, - "narHash": "sha256-U3BwyDc2OzBcZ8tD09qXibyivgOtOQFTFCVgFyJ+6MM=", + "lastModified": 1685215858, + "narHash": "sha256-IRMFoDXA6cYx3ifVw3B2JcC4JrjT5v7tRAx2vro2Ffs=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "9886352ec9ab3945896ee8a4185e961fe29df209", + "rev": "ba6e4ddeb3e8ad3f3e3bec63dafbc9fe558729bb", "type": "github" }, "original": { diff --git a/nix/home-manager/flake.lock b/nix/home-manager/flake.lock index a4d0c6a..393dcd1 100644 --- a/nix/home-manager/flake.lock +++ b/nix/home-manager/flake.lock @@ -205,11 +205,11 @@ }, "nixpkgs_2": { "locked": { - "lastModified": 1684935479, - "narHash": "sha256-6QMMsXMr2nhmOPHdti2j3KRHt+bai2zw+LJfdCl97Mk=", + "lastModified": 1685168767, + "narHash": "sha256-wQgnxz0PdqbyKKpsWl/RU8T8QhJQcHfeC6lh1xRUTfk=", "owner": "nixos", "repo": "nixpkgs", - "rev": "f91ee3065de91a3531329a674a45ddcb3467a650", + "rev": "e10802309bf9ae351eb27002c85cfdeb1be3b262", "type": "github" }, "original": { diff --git a/nix/home-manager/flake.nix b/nix/home-manager/flake.nix index c7b13b9..df25184 100644 --- a/nix/home-manager/flake.nix +++ b/nix/home-manager/flake.nix @@ -46,6 +46,10 @@ nix-index-database.hmModules.nix-index ./home.nix ]; + + extraSpecialArgs = { + system = system; + }; } ); in { diff --git a/nix/home-manager/home.nix b/nix/home-manager/home.nix index 8cb180a..0920f95 100644 --- a/nix/home-manager/home.nix +++ b/nix/home-manager/home.nix @@ -7,7 +7,11 @@ # Home Manager needs a bit of information about you and the paths it should # manage. home.username = "acicchetti"; - home.homeDirectory = "/home/acicchetti"; + + home.homeDirectory = + if "${system}" == "aarch64-darwin" + then "/Users/acicchetti" + else "/home/acicchetti"; # This value determines the Home Manager release that your configuration is # compatible with. This helps avoid breakage when a new Home Manager release diff --git a/nix/update.sh b/nix/update.sh index 71909a8..946c6e5 100755 --- a/nix/update.sh +++ b/nix/update.sh @@ -6,7 +6,7 @@ pushd ./nix/home-manager printf "Updating home-manager\n" nix flake update if [[ $(uname) == "Darwin" ]]; then - home-manager switch --flake "$PWD/home-manager#aarch64-darwin-acicchetti" + home-manager switch --flake ".#aarch64-darwin-acicchetti" else home-manager switch --flake '.#x86_64-linux-acicchetti' fi