chezmoi: arch electron flags

This commit is contained in:
js0ny 2025-09-27 14:33:09 +01:00
parent f9b716c07d
commit a891f968f8
10 changed files with 15 additions and 10 deletions

View file

@ -0,0 +1,21 @@
{
description = "My macOS Flake config";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
nix-darwin.url = "github:nix-darwin/nix-darwin/master";
nix-darwin.inputs.nixpkgs.follows = "nixpkgs";
};
outputs = { self, nixpkgs, nix-darwin, ... }: {
darwinConfigurations."zen" = nix-darwin.lib.darwinSystem {
system = "aarch64-darwin";
modules = [
./hosts/macbook/default.nix
./hosts/macbook/brew.nix
./hosts/macbook/system.nix
];
};
};
}