Fix nixpkgs for home-manager

This commit is contained in:
Evie Litherland-Smith 2023-06-28 18:26:37 +01:00
parent 6d629b0743
commit f29e4608c9

View file

@ -128,25 +128,11 @@
};
homeConfigurations = {
"tux@Monarch" = home-manager.lib.homeManagerConfiguration {
pkgs =
import nixpkgs
{
system = "aarch64-darwin";
config.allowUnfree = true;
}
.legacyPackages
."aarch64-darwin";
pkgs = nixpkgs.legacyPackages."aarch64-darwin";
modules = [./hosts/Monarch/home.nix];
};
"xenia@Northstar" = home-manager.lib.homeManagerConfiguration {
pkgs =
import nixpkgs
{
system = "aarch64-linux";
config.allowUnfree = true;
}
.legacyPackages
."aarch64-linux";
pkgs = nixpkgs.legacyPackages."aarch64-linux";
modules = [./hosts/Northstar/home.nix];
};
};