fix homepath

This commit is contained in:
Anthony Cicchetti 2023-05-28 21:42:59 -04:00
parent 4b1b404f08
commit 747cc83258
5 changed files with 16 additions and 8 deletions

6
flake.lock generated
View file

@ -164,11 +164,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1685043448, "lastModified": 1685215858,
"narHash": "sha256-U3BwyDc2OzBcZ8tD09qXibyivgOtOQFTFCVgFyJ+6MM=", "narHash": "sha256-IRMFoDXA6cYx3ifVw3B2JcC4JrjT5v7tRAx2vro2Ffs=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "9886352ec9ab3945896ee8a4185e961fe29df209", "rev": "ba6e4ddeb3e8ad3f3e3bec63dafbc9fe558729bb",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

@ -205,11 +205,11 @@
}, },
"nixpkgs_2": { "nixpkgs_2": {
"locked": { "locked": {
"lastModified": 1684935479, "lastModified": 1685168767,
"narHash": "sha256-6QMMsXMr2nhmOPHdti2j3KRHt+bai2zw+LJfdCl97Mk=", "narHash": "sha256-wQgnxz0PdqbyKKpsWl/RU8T8QhJQcHfeC6lh1xRUTfk=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "f91ee3065de91a3531329a674a45ddcb3467a650", "rev": "e10802309bf9ae351eb27002c85cfdeb1be3b262",
"type": "github" "type": "github"
}, },
"original": { "original": {

View file

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

View file

@ -7,7 +7,11 @@
# 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/acicchetti";
home.homeDirectory =
if "${system}" == "aarch64-darwin"
then "/Users/acicchetti"
else "/home/acicchetti";
# This value determines the Home Manager release that your configuration is # This value determines the Home Manager release that your configuration is
# compatible with. This helps avoid breakage when a new Home Manager release # compatible with. This helps avoid breakage when a new Home Manager release

View file

@ -6,7 +6,7 @@ pushd ./nix/home-manager
printf "Updating home-manager\n" printf "Updating home-manager\n"
nix flake update nix flake update
if [[ $(uname) == "Darwin" ]]; then if [[ $(uname) == "Darwin" ]]; then
home-manager switch --flake "$PWD/home-manager#aarch64-darwin-acicchetti" home-manager switch --flake ".#aarch64-darwin-acicchetti"
else else
home-manager switch --flake '.#x86_64-linux-acicchetti' home-manager switch --flake '.#x86_64-linux-acicchetti'
fi fi