added FIXME to change architecture in home manager if necessary

This commit is contained in:
Jonas
2025-11-15 11:23:54 -03:00
committed by Gabriel Fontes
parent 79ccb0c591
commit 8014a25502
+2 -1
View File
@@ -33,7 +33,8 @@
homeConfigurations = {
# FIXME replace with your username@hostname
"your-username@your-hostname" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux; # Home-manager requires 'pkgs' instance
# Home-manager requires 'pkgs' instance
pkgs = nixpkgs.legacyPackages.x86_64-linux; # FIXME replace x86_64-linux with your architecure
extraSpecialArgs = {inherit inputs;};
# > Our main home-manager configuration file <
modules = [./home-manager/home.nix];