summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorEmily <vcs@emily.moe>2025-01-14 01:47:14 +0000
committerGitHub <noreply@github.com>2025-01-14 01:47:14 +0000
commitbd921223ba7cdac346477d7ea5204d6f4736fcc6 (patch)
treeb4e86959c9a0813cce116103f8b2d75ce21a3f4d /flake.nix
parent6ace2f2d12bdf74235d5cbf9fbd34a71c9716685 (diff)
parente33d37c41f8040631f0cc16b032a1cf214aeeb4e (diff)
Merge pull request #1259 from emilazy/push-xztopxsynztu
Make release branches a thing
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 2c1ae1b..92569fa 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,6 +1,10 @@
{
description = "A collection of darwin modules";
+ inputs = {
+ nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
+ };
+
outputs = { self, nixpkgs }: let
forAllSystems = nixpkgs.lib.genAttrs [ "aarch64-darwin" "x86_64-darwin" "aarch64-linux" "x86_64-linux" ];
forDarwinSystems = nixpkgs.lib.genAttrs [ "aarch64-darwin" "x86_64-darwin" ];