Skip to content

Commit

Permalink
feat: added nix config
Browse files Browse the repository at this point in the history
  • Loading branch information
fbosch committed Jun 21, 2024
1 parent 3a3a90a commit 3ece4b8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
1 change: 1 addition & 0 deletions .config/nix/nix.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
experimental-features = nix-command flakes
13 changes: 13 additions & 0 deletions nix-fbb/flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs"
};
outputs = { self, nixpkgs }: {
packages."aarch64-darwin".default = let pkgs = nixpkgs.legacyPackages."aarch64-darwin"; in pkgs.buildEnv {
name = "home=packages";
paths = with pkgs; [
git
]
}
}
}

0 comments on commit 3ece4b8

Please sign in to comment.