fix homepath
This commit is contained in:
parent
4b1b404f08
commit
747cc83258
5 changed files with 16 additions and 8 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -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": {
|
||||
|
|
6
nix/home-manager/flake.lock
generated
6
nix/home-manager/flake.lock
generated
|
@ -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": {
|
||||
|
|
|
@ -46,6 +46,10 @@
|
|||
nix-index-database.hmModules.nix-index
|
||||
./home.nix
|
||||
];
|
||||
|
||||
extraSpecialArgs = {
|
||||
system = system;
|
||||
};
|
||||
}
|
||||
);
|
||||
in {
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue