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 = {
|
||||
"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];
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue