This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
home-manager.url = "github:nix-community/home-manager";
|
||||
darwin.url = "github:LnL7/nix-darwin";
|
||||
darwin.inputs.nixpkgs.follows = "nixpkgs";
|
||||
@@ -11,14 +10,14 @@
|
||||
caitsith.url = "git+https://scm.wyattjmiller.com/wymiller/caitsith.git";
|
||||
};
|
||||
|
||||
outputs = inputs@{ self, nixpkgs, flake-utils, home-manager, darwin, ... }:
|
||||
outputs = inputs@{ self, nixpkgs, home-manager, darwin, ... }:
|
||||
let
|
||||
systems = [
|
||||
supportedSystems = [
|
||||
"x86_64-linux"
|
||||
"aarch64-linux"
|
||||
"aarch64-darwin"
|
||||
];
|
||||
forAllSystems = f: nixpkgs.lib.genAttrs systems f;
|
||||
forAllSystems = f: nixpkgs.lib.genAttrs supportedSystems f;
|
||||
in
|
||||
{
|
||||
packages = forAllSystems (system:
|
||||
|
||||
Reference in New Issue
Block a user