1
0
Fork 0
dotfiles/system/flakes/Styx.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-29 18:13:31 +00:00
{ nixpkgs, home-manager, darwin, inputs, ... }:
let
2022-10-26 07:55:10 +00:00
default-system = "aarch64-darwin";
patched-darwin =
let
src = nixpkgs.legacyPackages.${default-system}.applyPatches {
name = "nix-darwin";
src = darwin;
patches = [
../../patches/darwin/ventura-fontrestore.patch
];
};
in
nixpkgs.lib.fix (self: (import "${src}/flake.nix").outputs { inherit self nixpkgs; });
2022-07-29 18:13:31 +00:00
overlay-x86 = _: _: { pkgs-x86 = import nixpkgs { system = "x86_64-darwin"; }; };
overlay-neovim = inputs.neovim-nightly-overlay.overlay;
overlay-nifoc = inputs.nifoc-overlay.overlay;
nixpkgsConfig = {
overlays = [
overlay-x86
overlay-neovim
overlay-nifoc
];
config = {
allowUnfree = true;
allowBroken = true;
};
};
in
{
2022-10-26 07:55:10 +00:00
system = patched-darwin.lib.darwinSystem {
system = default-system;
2022-07-29 18:13:31 +00:00
modules = [
../hosts/Styx.nix
home-manager.darwinModules.home-manager
{
nixpkgs = nixpkgsConfig;
2022-08-18 11:26:12 +00:00
nix.nixPath = [ "nixpkgs=${nixpkgs}" ];
2022-07-29 18:13:31 +00:00
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.users.daniel = import ../../home/hosts/Styx.nix;
}
];
};
}