From 2414f1d4664b211b5aa50b179fbbed2670439c6c Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sun, 9 Aug 2026 16:08:23 +0200 Subject: [PATCH] Change followed branch of flake to nixpkgs-unstable and add dependabot for it --- .github/dependabot.yml | 9 +++++++++ flake.lock | 8 ++++---- flake.nix | 4 ++-- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 059ad6d4..289102a6 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -50,3 +50,12 @@ updates: time: "11:00" timezone: "Europe/Brussels" open-pull-requests-limit: 20 + +- package-ecosystem: "nix" + directory: "/" + schedule: + interval: "weekly" + day: "saturday" + time: "11:00" + timezone: "Europe/Brussels" + open-pull-requests-limit: 20 diff --git a/flake.lock b/flake.lock index 4343697b..d614483f 100644 --- a/flake.lock +++ b/flake.lock @@ -20,16 +20,16 @@ }, "nixpkgs": { "locked": { - "lastModified": 1767799921, - "narHash": "sha256-r4GVX+FToWVE2My8VVZH4V0pTIpnu2ZE8/Z4uxGEMBE=", + "lastModified": 1785975029, + "narHash": "sha256-X44cn5rzytELc3NNoQsh0aLkjWA/QzPfc6HPQmsG3sU=", "owner": "nixos", "repo": "nixpkgs", - "rev": "d351d0653aeb7877273920cd3e823994e7579b0b", + "rev": "70ce234312134a463ba7728e94da2486a1d237ac", "type": "github" }, "original": { "owner": "nixos", - "ref": "nixos-25.11", + "ref": "nixpkgs-unstable", "repo": "nixpkgs", "type": "github" } diff --git a/flake.nix b/flake.nix index 631b1a22..e50e7ed1 100644 --- a/flake.nix +++ b/flake.nix @@ -2,7 +2,7 @@ description = "Tap"; inputs = { - nixpkgs.url = "github:nixos/nixpkgs/nixos-25.11"; + nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable"; flake-utils.url = "github:numtide/flake-utils"; }; @@ -33,4 +33,4 @@ ]; }; }); -} \ No newline at end of file +}