Fix nixpkgs for home-manager
This commit is contained in:
parent
6d629b0743
commit
f29e4608c9
18
flake.nix
18
flake.nix
|
@ -128,25 +128,11 @@
|
||||||
};
|
};
|
||||||
homeConfigurations = {
|
homeConfigurations = {
|
||||||
"tux@Monarch" = home-manager.lib.homeManagerConfiguration {
|
"tux@Monarch" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs =
|
pkgs = nixpkgs.legacyPackages."aarch64-darwin";
|
||||||
import nixpkgs
|
|
||||||
{
|
|
||||||
system = "aarch64-darwin";
|
|
||||||
config.allowUnfree = true;
|
|
||||||
}
|
|
||||||
.legacyPackages
|
|
||||||
."aarch64-darwin";
|
|
||||||
modules = [./hosts/Monarch/home.nix];
|
modules = [./hosts/Monarch/home.nix];
|
||||||
};
|
};
|
||||||
"xenia@Northstar" = home-manager.lib.homeManagerConfiguration {
|
"xenia@Northstar" = home-manager.lib.homeManagerConfiguration {
|
||||||
pkgs =
|
pkgs = nixpkgs.legacyPackages."aarch64-linux";
|
||||||
import nixpkgs
|
|
||||||
{
|
|
||||||
system = "aarch64-linux";
|
|
||||||
config.allowUnfree = true;
|
|
||||||
}
|
|
||||||
.legacyPackages
|
|
||||||
."aarch64-linux";
|
|
||||||
modules = [./hosts/Northstar/home.nix];
|
modules = [./hosts/Northstar/home.nix];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue